This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 3a8bab032e8 Revert "[AVR] Add the branch selection pass from the GitHub [...] new 3087bcdef29 [SafepointIRVerifier] Add verifier pass for finding GC relo [...]
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/IR/SafepointIRVerifier.h | 35 +++ include/llvm/InitializePasses.h | 1 + lib/IR/CMakeLists.txt | 1 + lib/IR/Core.cpp | 1 + lib/IR/SafepointIRVerifier.cpp | 358 ++++++++++++++++++++++ test/SafepointIRVerifier/basic-use-after-reloc.ll | 23 ++ test/SafepointIRVerifier/constant-bases.ll | 70 +++++ test/SafepointIRVerifier/unrecorded-live-at-sp.ll | 71 +++++ test/SafepointIRVerifier/uses-in-phi-nodes.ll | 78 +++++ 9 files changed, 638 insertions(+) create mode 100644 include/llvm/IR/SafepointIRVerifier.h create mode 100644 lib/IR/SafepointIRVerifier.cpp create mode 100644 test/SafepointIRVerifier/basic-use-after-reloc.ll create mode 100644 test/SafepointIRVerifier/constant-bases.ll create mode 100644 test/SafepointIRVerifier/unrecorded-live-at-sp.ll create mode 100644 test/SafepointIRVerifier/uses-in-phi-nodes.ll