This repository was archived by the owner on Nov 19, 2019. It is now read-only.
4 files changed
+9
-9
lines changed+6-6
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 |
| - | |
4 |
| - | |
| 3 | + | |
| 4 | + | |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
8 |
| - | |
| 7 | + | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
12 |
| - | |
| 11 | + | |
| 12 | + | |
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
|
- include/clang/AST/ASTImporter.h+2-2
- include/clang/AST/DeclBase.h-5
- include/clang/AST/Expr.h-5
- include/clang/Basic/Attr.td+1-5
- include/clang/Basic/AttrDocs.td+8-8
- include/clang/Basic/DiagnosticParseKinds.td+1-1
- include/clang/Parse/Parser.h+1-2
- include/clang/Sema/Sema.h+6-13
- lib/AST/ASTImporter.cpp+22-36
- lib/AST/DeclBase.cpp-12
- lib/Basic/Targets/WebAssembly.cpp+4
- lib/Basic/Targets/WebAssembly.h+10
- lib/CodeGen/CGBuiltin.cpp-22
- lib/CodeGen/CGDecl.cpp+84-6
- lib/CodeGen/CGObjC.cpp+8-4
- lib/CodeGen/CGObjCMac.cpp+4-17
- lib/CodeGen/CMakeLists.txt-1
- lib/CodeGen/PatternInit.cpp-93
- lib/CodeGen/PatternInit.h-27
- lib/Driver/ToolChains/Clang.cpp+3
- lib/Parse/ParseObjc.cpp+6-5
- lib/Parse/Parser.cpp+2-6
- lib/Sema/SemaDecl.cpp-31
- lib/Sema/SemaDeclObjC.cpp+2-11
- lib/Sema/SemaExpr.cpp+9-25
- lib/Sema/SemaLookup.cpp+1-4
- lib/Sema/SemaTemplateInstantiate.cpp+1-1
- lib/StaticAnalyzer/Core/ExprEngine.cpp+34-30
- lib/StaticAnalyzer/Core/RegionStore.cpp+1-4
- test/Analysis/malloc.cpp-23
- test/Analysis/string.c-6
- test/Analysis/use-after-move.cpp+432-209
- test/CodeGenCXX/trivial-auto-var-init.cpp-28
- test/CodeGenObjC/arc-unsafeclaim.m+1-2
- test/CodeGenObjC/class-stubs.m+1-5
- test/CodeGenObjC/non-lazy-classes.m+4-12
- test/CodeGenObjC/objc-asm-attribute-neg-test.m+34
- test/FixIt/fixit-pragma-attribute.cpp+2-2
- test/Misc/pragma-attribute-supported-attributes-list.test+3-3
- test/Modules/Inputs/interface-diagnose-missing-import/Foo.framework/Headers/Bar.h-1
- test/Modules/Inputs/interface-diagnose-missing-import/Foo.framework/Headers/Foo.h-2
- test/Modules/Inputs/interface-diagnose-missing-import/Foo.framework/Modules/module.modulemap-6
- test/Modules/Inputs/interface-diagnose-missing-import/Foo.framework/PrivateHeaders/RandoPriv.h-4
- test/Modules/interface-diagnose-missing-import.m-11
- test/Parser/attributes.mm+4-5
- test/Parser/objc-implementation-attrs.m-53
- test/Parser/placeholder-recovery.m+1-1
- test/Sema/pragma-attribute-strict-subjects.c+1-2
- test/Sema/typo-correction.c-15
- test/SemaCXX/PR41139.cpp-15
- test/SemaCXX/cxx1y-generic-lambdas.cpp-9
- test/SemaObjC/attr-objc-non-lazy.m+1-6
- test/SemaObjC/objc-asm-attribute-neg-test.m+6-14
- test/SemaObjC/warn-implicit-self-in-block.m+18
- test/SemaObjCXX/warn-implicit-self-in-block.mm-42
- unittests/StaticAnalyzer/CMakeLists.txt-1
- unittests/StaticAnalyzer/Reusables.h-63
- unittests/StaticAnalyzer/StoreTest.cpp-105
- unittests/StaticAnalyzer/SymbolReaperTest.cpp+52-3
- cmake/modules/AddLLVM.cmake+5-12
- cmake/modules/CMakeLists.txt-8
- cmake/modules/LLVMConfig.cmake.in+4-6
- include/llvm/BinaryFormat/Wasm.h+1-1
- lib/CodeGen/TargetLoweringObjectFileImpl.cpp+4
- lib/MC/MCWasmStreamer.cpp+1
- lib/MC/WasmObjectWriter.cpp+49-4
- lib/Target/PowerPC/PPCISelLowering.cpp+1-1
- lib/Target/WebAssembly/WebAssemblyISelLowering.cpp+2-1
- lib/Transforms/IPO/MergeFunctions.cpp-1
- test/CodeGen/PowerPC/pr41177.ll-12
- test/MC/WebAssembly/array-fill.ll+1-1
- test/MC/WebAssembly/assembler-binary.ll+1-1
- test/MC/WebAssembly/bss.ll+4-4
- test/MC/WebAssembly/comdat.ll+2-2
- test/MC/WebAssembly/event-section.ll+1-1
- test/MC/WebAssembly/explicit-sections.ll+3-3
- test/MC/WebAssembly/function-sections.ll+1-1
- test/MC/WebAssembly/global-ctor-dtor.ll+2-2
- test/MC/WebAssembly/unnamed-data.ll+5-5
- test/MC/WebAssembly/weak-alias.ll+4-4
- test/Object/Inputs/trivial-object-test.wasm
- test/Object/obj2yaml.test+2-2
- test/Object/wasm-bad-metadata-version.yaml+1-1
- test/ObjectYAML/wasm/code_section.yaml+1-1
- test/ObjectYAML/wasm/data_section.yaml+1-1
- test/ObjectYAML/wasm/event_section.yaml+2-2
- test/ObjectYAML/wasm/invalid_global_weak.yaml+1-1
- test/ObjectYAML/wasm/linking_section.yaml+1-1
- test/ObjectYAML/wasm/weak_symbols.yaml+1-1
- test/Transforms/MergeFunc/comdat.ll-24
- test/tools/llvm-nm/wasm/exports.yaml+1-1
- test/tools/llvm-nm/wasm/imports.yaml+1-1
- test/tools/llvm-nm/wasm/weak-symbols.yaml+1-1
- test/tools/llvm-objdump/Inputs/trivial.obj.wasm
- test/tools/llvm-readobj/Inputs/trivial.obj.wasm
Submodule swift updated from 8ec0e39 to be307a4
0 commit comments