This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6788e26abe0 [ARM] Combine ands+lsls to lsls+lsrs for Thumb1. new 020dc8d94b7 IR: Add fp operations to atomicrmw
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: docs/LangRef.rst | 13 ++++-- include/llvm/Bitcode/LLVMBitCodes.h | 4 +- include/llvm/CodeGen/TargetLowering.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/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 | 3 ++ 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 ++++++++++++++++++++ .../AtomicExpand}/Hexagon/lit.local.cfg | 0 test/Transforms/AtomicExpand/Mips/atomicrmw-fp.ll | 51 ++++++++++++++++++++++ .../AtomicExpand}/Mips/lit.local.cfg | 0 test/Transforms/AtomicExpand/RISCV/atomicrmw-fp.ll | 47 ++++++++++++++++++++ .../RISCV/lit.local.cfg | 0 26 files changed, 383 insertions(+), 22 deletions(-) create mode 100644 test/Assembler/invalid-atomicrmw-fadd-must-be-fp-type.ll create mode 100644 test/Assembler/invalid-atomicrmw-fsub-must-be-fp-type.ll create mode 100644 test/Transforms/AtomicExpand/AArch64/atomicrmw-fp.ll create mode 100644 test/Transforms/AtomicExpand/ARM/atomicrmw-fp.ll create mode 100644 test/Transforms/AtomicExpand/Hexagon/atomicrmw-fp.ll copy test/{CodeGen/MIR => Transforms/AtomicExpand}/Hexagon/lit.local.cfg (100%) create mode 100644 test/Transforms/AtomicExpand/Mips/atomicrmw-fp.ll copy test/{CodeGen/MIR => Transforms/AtomicExpand}/Mips/lit.local.cfg (100%) create mode 100644 test/Transforms/AtomicExpand/RISCV/atomicrmw-fp.ll copy test/Transforms/{SimplifyCFG => AtomicExpand}/RISCV/lit.local.cfg (100%)