OSDN Git Service

Revert r351778: IR: Add fp operations to atomicrmw
authorChandler Carruth <chandlerc@gmail.com>
Tue, 22 Jan 2019 10:29:58 +0000 (10:29 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Tue, 22 Jan 2019 10:29:58 +0000 (10:29 +0000)
commit73f9a1d617193337738927743d0109de063af1a2
treea90effbd95a592bdb75190aa0423e79cc90b8058
parent24470819e8753ee7c63e57bb433fb8a06665cf0a
Revert r351778: IR: Add fp operations to atomicrmw

This broke the RISCV build, and even with that fixed, one of the RISCV
tests behaves surprisingly differently with asserts than without,
leaving there no clear test pattern to use. Generally it seems bad for
hte IR to differ substantially due to asserts (as in, an alloca is used
with asserts that isn't needed without!) and nothing I did simply would
fix it so I'm reverting back to green.

This also required reverting the RISCV build fix in r351782.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351796 91177308-0d34-0410-b5e6-96231b3b80d8
26 files changed:
docs/LangRef.rst
include/llvm/Bitcode/LLVMBitCodes.h
include/llvm/CodeGen/TargetLowering.h
include/llvm/IR/Instructions.h
lib/AsmParser/LLParser.cpp
lib/Bitcode/Reader/BitcodeReader.cpp
lib/Bitcode/Writer/BitcodeWriter.cpp
lib/CodeGen/AtomicExpandPass.cpp
lib/IR/Instructions.cpp
lib/IR/Verifier.cpp
lib/Target/AArch64/AArch64ISelLowering.cpp
lib/Target/ARM/ARMISelLowering.cpp
lib/Target/Hexagon/HexagonISelLowering.cpp
lib/Target/RISCV/RISCVISelLowering.cpp
test/Assembler/atomic.ll
test/Assembler/invalid-atomicrmw-fadd-must-be-fp-type.ll [deleted file]
test/Assembler/invalid-atomicrmw-fsub-must-be-fp-type.ll [deleted file]
test/Bitcode/compatibility.ll
test/Transforms/AtomicExpand/AArch64/atomicrmw-fp.ll [deleted file]
test/Transforms/AtomicExpand/ARM/atomicrmw-fp.ll [deleted file]
test/Transforms/AtomicExpand/Hexagon/atomicrmw-fp.ll [deleted file]
test/Transforms/AtomicExpand/Hexagon/lit.local.cfg [deleted file]
test/Transforms/AtomicExpand/Mips/atomicrmw-fp.ll [deleted file]
test/Transforms/AtomicExpand/Mips/lit.local.cfg [deleted file]
test/Transforms/AtomicExpand/RISCV/atomicrmw-fp.ll [deleted file]
test/Transforms/AtomicExpand/RISCV/lit.local.cfg [deleted file]