This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 99ddd77ed3f [NFC] Factor out some reusable logic new 24470819e87 [llvm-symbolizer] Add support for --basenames/-s new 73f9a1d6171 Revert r351778: IR: Add fp operations to atomicrmw
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: docs/CommandGuide/llvm-symbolizer.rst | 4 ++ docs/LangRef.rst | 13 ++---- include/llvm/Bitcode/LLVMBitCodes.h | 4 +- include/llvm/CodeGen/TargetLowering.h | 5 +-- include/llvm/DebugInfo/Symbolize/DIPrinter.h | 5 ++- include/llvm/IR/Instructions.h | 22 +--------- lib/AsmParser/LLParser.cpp | 40 +++++------------ lib/Bitcode/Reader/BitcodeReader.cpp | 2 - lib/Bitcode/Writer/BitcodeWriter.cpp | 2 - lib/CodeGen/AtomicExpandPass.cpp | 6 --- lib/DebugInfo/Symbolize/DIPrinter.cpp | 3 ++ lib/IR/Instructions.cpp | 4 -- lib/IR/Verifier.cpp | 5 --- lib/Target/AArch64/AArch64ISelLowering.cpp | 3 -- lib/Target/ARM/ARMISelLowering.cpp | 3 -- lib/Target/Hexagon/HexagonISelLowering.cpp | 19 +------- lib/Target/RISCV/RISCVISelLowering.cpp | 6 --- test/Assembler/atomic.ll | 10 ----- .../invalid-atomicrmw-fadd-must-be-fp-type.ll | 7 --- .../invalid-atomicrmw-fsub-must-be-fp-type.ll | 7 --- test/Bitcode/compatibility.ll | 7 --- .../AtomicExpand/AArch64/atomicrmw-fp.ll | 47 -------------------- test/Transforms/AtomicExpand/ARM/atomicrmw-fp.ll | 51 ---------------------- .../AtomicExpand/Hexagon/atomicrmw-fp.ll | 47 -------------------- test/Transforms/AtomicExpand/Hexagon/lit.local.cfg | 2 - test/Transforms/AtomicExpand/Mips/atomicrmw-fp.ll | 51 ---------------------- test/Transforms/AtomicExpand/Mips/lit.local.cfg | 2 - test/Transforms/AtomicExpand/RISCV/atomicrmw-fp.ll | 47 -------------------- test/Transforms/AtomicExpand/RISCV/lit.local.cfg | 5 --- test/tools/llvm-symbolizer/basenames.s | 12 +++++ tools/llvm-symbolizer/llvm-symbolizer.cpp | 9 +++- 31 files changed, 52 insertions(+), 398 deletions(-) delete mode 100644 test/Assembler/invalid-atomicrmw-fadd-must-be-fp-type.ll delete mode 100644 test/Assembler/invalid-atomicrmw-fsub-must-be-fp-type.ll delete mode 100644 test/Transforms/AtomicExpand/AArch64/atomicrmw-fp.ll delete mode 100644 test/Transforms/AtomicExpand/ARM/atomicrmw-fp.ll delete mode 100644 test/Transforms/AtomicExpand/Hexagon/atomicrmw-fp.ll delete mode 100644 test/Transforms/AtomicExpand/Hexagon/lit.local.cfg delete mode 100644 test/Transforms/AtomicExpand/Mips/atomicrmw-fp.ll delete mode 100644 test/Transforms/AtomicExpand/Mips/lit.local.cfg delete mode 100644 test/Transforms/AtomicExpand/RISCV/atomicrmw-fp.ll delete mode 100644 test/Transforms/AtomicExpand/RISCV/lit.local.cfg create mode 100644 test/tools/llvm-symbolizer/basenames.s