Skip to content

Commit

Permalink
Rebase LLVM to 8.0.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Mar 18, 2019
1 parent 0f88167 commit 0dabf8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Expand Up @@ -43,7 +43,7 @@
[submodule "src/llvm-project"]
path = src/llvm-project
url = https://github.com/rust-lang/llvm-project.git
branch = rustc/8.0-2019-01-16
branch = rustc/8.0-2019-03-18
[submodule "src/doc/embedded-book"]
path = src/doc/embedded-book
url = https://github.com/rust-embedded/book.git
2 changes: 1 addition & 1 deletion src/llvm-project
Submodule llvm-project updated 66 files
+15 −0 clang-tools-extra/clangd/Threading.cpp
+7 −6 clang-tools-extra/clangd/index/Background.h
+4 −4 clang-tools-extra/clangd/index/BackgroundIndexStorage.cpp
+7 −8 clang-tools-extra/docs/README.txt
+58 −31 clang-tools-extra/docs/ReleaseNotes.rst
+23 −0 clang-tools-extra/docs/_static/clang-tools-extra-styles.css
+3 −0 clang-tools-extra/docs/_templates/layout.html
+1 −161 clang-tools-extra/docs/clangd.rst
+ clang-tools-extra/docs/clangd/ApplyClangTidyFixInVSCode.gif
+ clang-tools-extra/docs/clangd/ApplyFixInVSCode.gif
+ clang-tools-extra/docs/clangd/CodeCompletionInEmacsCompanyMode.png
+ clang-tools-extra/docs/clangd/CodeCompletionInSublimeText.png
+ clang-tools-extra/docs/clangd/CodeCompletionInVSCode.png
+ clang-tools-extra/docs/clangd/CodeCompletionInYCM.png
+ clang-tools-extra/docs/clangd/CodeCompletionInsertsNamespaceQualifiersInVSCode.gif
+29 −0 clang-tools-extra/docs/clangd/DeveloperDocumentation.rst
+ clang-tools-extra/docs/clangd/DiagnosticsInEmacsEglot.png
+ clang-tools-extra/docs/clangd/ErrorsInVSCode.png
+181 −0 clang-tools-extra/docs/clangd/Extensions.rst
+231 −0 clang-tools-extra/docs/clangd/Features.rst
+ clang-tools-extra/docs/clangd/FindAllReferencesInVSCode.gif
+ clang-tools-extra/docs/clangd/FormatSelectionInVSCode.gif
+ clang-tools-extra/docs/clangd/GoToDefinitionInVSCode.gif
+371 −0 clang-tools-extra/docs/clangd/Installation.rst
+ clang-tools-extra/docs/clangd/NavigationWithBreadcrumbsInVSCode.gif
+ clang-tools-extra/docs/clangd/OutlineInVSCode.png
+ clang-tools-extra/docs/clangd/SignatureHelpInVSCode.gif
+27 −0 clang-tools-extra/docs/clangd/index.rst
+1 −1 clang-tools-extra/docs/conf.py
+3 −7 clang-tools-extra/docs/index.rst
+1 −1 clang-tools-extra/test/clangd/background-index.test
+45 −5 clang/docs/AttributeReference.rst
+1,431 −676 clang/docs/DiagnosticsReference.rst
+10 −102 clang/docs/ReleaseNotes.rst
+6 −0 clang/include/clang/AST/APValue.h
+5 −5 clang/include/clang/Basic/AttrDocs.td
+6 −4 clang/include/clang/Basic/TargetInfo.h
+6 −1 clang/include/clang/Driver/CLCompatOptions.td
+20 −0 clang/lib/AST/APValue.cpp
+8 −6 clang/lib/AST/ExprConstant.cpp
+9 −2 clang/lib/CodeGen/CGStmt.cpp
+12 −3 clang/lib/Sema/SemaStmtAsm.cpp
+15 −0 clang/test/CodeGen/x86-64-inline-asm.c
+6 −0 clang/test/Driver/cl-options.c
+23 −1 clang/test/Sema/inline-asm-validate-x86.c
+24 −0 clang/test/SemaCXX/constant-expression-cxx1y.cpp
+8 −0 clang/test/SemaCXX/enable_if.cpp
+1 −4 libcxx/docs/ReleaseNotes.rst
+0 −26 libunwind/include/libunwind.h
+0 −132 libunwind/src/AddressSpace.hpp
+9 −6 libunwind/src/Unwind-seh.cpp
+8 −0 libunwind/src/UnwindCursor.hpp
+3 −86 libunwind/src/libunwind.cpp
+2 −0 llvm/.gitignore
+1 −1 llvm/bindings/go/llvm/ir.go
+70 −43 llvm/docs/ReleaseNotes.rst
+134 −120 llvm/include/llvm/IR/IntrinsicsX86.td
+11 −2 llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
+4 −5 llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
+2 −2 llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
+5 −2 llvm/lib/Target/X86/X86ISelLowering.cpp
+48 −0 llvm/test/CodeGen/AArch64/win64-jumptable.ll
+40 −0 llvm/test/CodeGen/AArch64/wineh-try-catch-cbz.ll
+2 −2 llvm/test/CodeGen/AArch64/wineh-try-catch.ll
+22 −0 llvm/test/CodeGen/X86/pr40891.ll
+21 −0 llvm/test/Transforms/DeadStoreElimination/X86/gather-null-pointer.ll
2 changes: 1 addition & 1 deletion src/rustllvm/llvm-rebuild-trigger
@@ -1,4 +1,4 @@
# If this file is modified, then llvm will be (optionally) cleaned and then rebuilt.
# The actual contents of this file do not matter, but to trigger a change on the
# build bots then the contents should be changed so git updates the mtime.
2019-01-16
2019-03-18

0 comments on commit 0dabf8c

Please sign in to comment.