This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 74d2cb54e4d Avoid unnecessary copies in some for loops new cf003d753fe [LIR] Obey non-integral pointer semantics new eb3134a13b6 [LoopUnroll] Don't try to unroll non canonical loops. new be033a84a40 Revert "Refactor DynamicLibrary so searching for a symbol w [...]
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/Support/DynamicLibrary.h | 7 +- lib/Support/CMakeLists.txt | 1 + lib/Support/DynamicLibrary.cpp | 237 +++++++++++---------- lib/Support/SearchForAddressOfSpecialSymbol.cpp | 58 +++++ lib/Support/Unix/DynamicLibrary.inc | 131 ------------ lib/Support/Windows/DynamicLibrary.inc | 218 +++++++++---------- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 5 + lib/Transforms/Utils/LoopUnroll.cpp | 15 ++ test/Transforms/LoopIdiom/non-integral-pointers.ll | 48 +++++ test/Transforms/LoopUnroll/not-rotated.ll | 26 +++ unittests/Support/CMakeLists.txt | 2 - unittests/Support/DynamicLibrary/CMakeLists.txt | 19 -- .../Support/DynamicLibrary/DynamicLibraryTest.cpp | 133 ------------ unittests/Support/DynamicLibrary/PipSqueak.cxx | 36 ---- unittests/Support/DynamicLibrary/PipSqueak.h | 19 -- 15 files changed, 379 insertions(+), 576 deletions(-) create mode 100644 lib/Support/SearchForAddressOfSpecialSymbol.cpp delete mode 100644 lib/Support/Unix/DynamicLibrary.inc create mode 100644 test/Transforms/LoopIdiom/non-integral-pointers.ll create mode 100644 test/Transforms/LoopUnroll/not-rotated.ll delete mode 100644 unittests/Support/DynamicLibrary/CMakeLists.txt delete mode 100644 unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp delete mode 100644 unittests/Support/DynamicLibrary/PipSqueak.cxx delete mode 100644 unittests/Support/DynamicLibrary/PipSqueak.h