This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 64a51341c95 [RISCV][MC] Reject bare symbols for the simm6 and simm6non [...] new 9d93ec6c77f Common infrastructure for reading a profile remapping file [...] new dc08c466b98 [InstCombine] Add test cases for D51964. NFC new 93dcdfe7b76 [InstCombine] Fold (xor (min/max X, Y), -1) -> (max/min ~X, [...]
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/SymbolRemappingReader.h | 133 +++++++++++++++++++++ lib/Support/CMakeLists.txt | 1 + lib/Support/SymbolRemappingReader.cpp | 81 +++++++++++++ lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 11 ++ lib/Transforms/InstCombine/InstCombineSelect.cpp | 2 + test/Transforms/InstCombine/pr38915.ll | 24 ++++ test/Transforms/InstCombine/xor.ll | 120 +++++++++++++++++++ unittests/Support/CMakeLists.txt | 1 + unittests/Support/SymbolRemappingReaderTest.cpp | 96 +++++++++++++++ 9 files changed, 469 insertions(+) create mode 100644 include/llvm/Support/SymbolRemappingReader.h create mode 100644 lib/Support/SymbolRemappingReader.cpp create mode 100644 test/Transforms/InstCombine/pr38915.ll create mode 100644 unittests/Support/SymbolRemappingReaderTest.cpp