Skip to content

Commit

Permalink
Update LLVM to rust-llvm-2015-02-19
Browse files Browse the repository at this point in the history
Fixes #22159
Fixes #21721
  • Loading branch information
dotdash committed Feb 21, 2015
1 parent 2b01a37 commit 6957bb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/llvm
Submodule llvm updated 70 files
+33 −9 docs/ReleaseNotes.rst
+0 −5 docs/index.rst
+1 −0 examples/Kaleidoscope/Chapter4/CMakeLists.txt
+0 −6 include/llvm/CodeGen/MachineModuleInfo.h
+4 −2 include/llvm/CodeGen/SelectionDAG.h
+20 −11 include/llvm/CodeGen/SelectionDAGNodes.h
+0 −3 include/llvm/Config/config.h.cmake
+5 −2 include/llvm/Config/llvm-config.h.cmake
+3 −0 include/llvm/Config/llvm-config.h.in
+6 −0 include/llvm/IR/Constants.h
+5 −0 include/llvm/Target/TargetLibraryInfo.h
+6 −6 lib/Analysis/IPA/InlineCost.cpp
+4 −1 lib/Analysis/MemoryBuiltins.cpp
+15 −3 lib/Bitcode/Reader/BitcodeReader.cpp
+2 −0 lib/Bitcode/Reader/BitcodeReader.h
+7 −8 lib/CodeGen/AsmPrinter/EHStreamer.cpp
+4 −13 lib/CodeGen/AsmPrinter/EHStreamer.h
+1 −148 lib/CodeGen/AsmPrinter/Win64Exception.cpp
+0 −4 lib/CodeGen/AsmPrinter/Win64Exception.h
+0 −8 lib/CodeGen/MachineModuleInfo.cpp
+1 −1 lib/CodeGen/Passes.cpp
+20 −18 lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+13 −12 lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
+1 −0 lib/CodeGen/SelectionDAG/LegalizeTypes.h
+5 −3 lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
+50 −12 lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
+7 −6 lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+8 −31 lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+0 −2 lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+1 −63 lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+0 −1 lib/ExecutionEngine/CMakeLists.txt
+1 −1 lib/ExecutionEngine/LLVMBuild.txt
+1 −0 lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
+0 −0 lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
+19 −4 lib/IR/Constants.cpp
+3 −0 lib/IR/DebugInfo.cpp
+4 −3 lib/IR/Type.cpp
+11 −6 lib/MC/WinCOFFObjectWriter.cpp
+2 −0 lib/Target/TargetLibraryInfo.cpp
+166 −0 lib/Target/X86/X86ISelLowering.cpp
+9 −2 lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
+41 −0 lib/Transforms/Instrumentation/InstrProfiling.cpp
+3 −0 lib/Transforms/Scalar/EarlyCSE.cpp
+6 −4 lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
+39 −23 lib/Transforms/Utils/LoopUnrollRuntime.cpp
+2 −0 lib/Transforms/Vectorize/LoopVectorize.cpp
+16 −4 lib/Transforms/Vectorize/SLPVectorizer.cpp
+23 −0 test/CodeGen/PowerPC/vsel-prom.ll
+35 −0 test/CodeGen/X86/constant-combines.ll
+4 −3 test/CodeGen/X86/masked_memop.ll
+12 −0 test/CodeGen/X86/pshufb-mask-comments.ll
+0 −175 test/CodeGen/X86/seh-basic.ll
+0 −196 test/CodeGen/X86/seh-safe-div.ll
+33 −0 test/DebugInfo/location-verifier.ll
+25 −0 test/MC/COFF/diff.s
+10 −1 test/Transforms/EarlyCSE/basic.ll
+19 −0 test/Transforms/Inline/inline-indirect.ll
+2 −0 test/Transforms/InstCombine/loadstore-metadata.ll
+114 −0 test/Transforms/InstMerge/st_sink_bugfix_22613.ll
+19 −0 test/Transforms/InstSimplify/load.ll
+1 −3 test/Transforms/LoopUnroll/runtime-loop.ll
+1 −1 test/Transforms/LoopUnroll/runtime-loop1.ll
+18 −11 test/Transforms/LoopUnroll/tripcount-overflow.ll
+82 −0 test/Transforms/LoopVectorize/X86/masked_load_store.ll
+50 −0 test/Transforms/SLPVectorizer/X86/bad_types.ll
+9 −0 test/tools/gold/no-map-whole-file.ll
+10 −9 tools/gold/gold-plugin.cpp
+1 −0 tools/lli/CMakeLists.txt
+1 −0 unittests/ExecutionEngine/CMakeLists.txt
+1 −0 unittests/ExecutionEngine/MCJIT/CMakeLists.txt
2 changes: 1 addition & 1 deletion src/rustllvm/llvm-auto-clean-trigger
@@ -1,4 +1,4 @@
# If this file is modified, then llvm will be forcibly 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.
2015-02-13
2015-02-19

0 comments on commit 6957bb6

Please sign in to comment.