This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from bffb4d4e84c Fix warning converting from boolean to pointer introduced i [...]
new ccb223e38e3 Revert "Refactor DynamicLibrary so searching for a symbol w [...]
The 1 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 | 207 +++++++++---------
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 --
11 files changed, 277 insertions(+), 573 deletions(-)
create mode 100644 lib/Support/SearchForAddressOfSpecialSymbol.cpp
delete mode 100644 lib/Support/Unix/DynamicLibrary.inc
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
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 478f822a4d5 Fix warning converting from void* to boolean introduced in [...]
new bffb4d4e84c Fix warning converting from boolean to pointer introduced i [...]
The 1 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:
lib/Support/DynamicLibrary.cpp | 2 +-
lib/Support/Windows/DynamicLibrary.inc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 86b13b4b4f1 Revert "[SCEV] Enable SCEV verification by default in EXPEN [...]
new 478f822a4d5 Fix warning converting from void* to boolean introduced in [...]
The 1 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:
lib/Support/DynamicLibrary.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from dd358f5cfda [Orc] Fix a warning by removing an unused lambda capture.
new 545de00b4bc Refactor DynamicLibrary so searching for a symbol will have [...]
new 86b13b4b4f1 Revert "[SCEV] Enable SCEV verification by default in EXPEN [...]
The 2 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/Analysis/ScalarEvolution.cpp | 13 +-
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 | 207 +++++++++---------
.../LoopUnswitch/2008-11-03-Invariant.ll | 2 +-
unittests/Support/CMakeLists.txt | 2 +
unittests/Support/DynamicLibrary/CMakeLists.txt | 19 ++
.../Support/DynamicLibrary/DynamicLibraryTest.cpp | 133 ++++++++++++
unittests/Support/DynamicLibrary/PipSqueak.cxx | 36 ++++
.../Support/DynamicLibrary/PipSqueak.h | 13 +-
13 files changed, 567 insertions(+), 292 deletions(-)
delete mode 100644 lib/Support/SearchForAddressOfSpecialSymbol.cpp
create mode 100644 lib/Support/Unix/DynamicLibrary.inc
create mode 100644 unittests/Support/DynamicLibrary/CMakeLists.txt
create mode 100644 unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
create mode 100644 unittests/Support/DynamicLibrary/PipSqueak.cxx
copy lib/MC/MCDisassembler/MCSymbolizer.cpp => unittests/Support/DynamicLibrary/Pi [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 0e8cd85fc0f Fix unused variables / fields warnings in release builds
new dd358f5cfda [Orc] Fix a warning by removing an unused lambda capture.
The 1 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/ExecutionEngine/Orc/RPCSerialization.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from de62d73fb74 [SCEV] Fix exponential time complexity by caching
new 57106e79634 [SCEV] Enable SCEV verification by default in EXPENSIVE_CHE [...]
new 0e8cd85fc0f Fix unused variables / fields warnings in release builds
The 2 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:
lib/Analysis/ScalarEvolution.cpp | 19 ++++++++++++++++---
test/Transforms/LoopUnswitch/2008-11-03-Invariant.ll | 2 +-
2 files changed, 17 insertions(+), 4 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 0cb27bba3d0 [PartialInine]: add triaging options
new de62d73fb74 [SCEV] Fix exponential time complexity by caching
The 1 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/Analysis/ScalarEvolution.h | 41 +++++++++++
lib/Analysis/ScalarEvolution.cpp | 82 +++++++++++++++++-----
.../ScalarEvolution}/exponential-behavior.ll | 10 ++-
3 files changed, 112 insertions(+), 21 deletions(-)
copy test/{Transforms/LoopUnswitch => Analysis/ScalarEvolution}/exponential-behavi [...]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-7-branch
in repository gcc.
from d1657b16da7 Daily bump.
new d670c3e922a Daily bump.
The 1 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:
gcc/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 23fa3a773f2 2017-04-23 Jerry DeLisle <jvdelisle(a)gcc.gnu.org>
new 084982e5847 Daily bump.
The 1 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:
gcc/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch gcc-6-branch
in repository gcc.
from 12e784473dd Daily bump.
new 1b189e8fce2 Daily bump.
The 1 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:
gcc/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.