diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2019-01-22 10:29:58 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2019-01-22 10:29:58 +0000 |
commit | 285fe716c54caf8c12018365fc3657851ff7d1e3 (patch) | |
tree | 224746a253ab1176ccf619dc2650550d05750a8c /llvm/lib/IR/Instructions.cpp | |
parent | 33c16a3f16fa56ad945e086af669760e0b80d8c7 (diff) | |
download | bcm5719-llvm-285fe716c54caf8c12018365fc3657851ff7d1e3.tar.gz bcm5719-llvm-285fe716c54caf8c12018365fc3657851ff7d1e3.zip |
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.
llvm-svn: 351796
Diffstat (limited to 'llvm/lib/IR/Instructions.cpp')
-rw-r--r-- | llvm/lib/IR/Instructions.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/IR/Instructions.cpp b/llvm/lib/IR/Instructions.cpp index f48a970fd40..8b674465792 100644 --- a/llvm/lib/IR/Instructions.cpp +++ b/llvm/lib/IR/Instructions.cpp @@ -1407,10 +1407,6 @@ StringRef AtomicRMWInst::getOperationName(BinOp Op) { return "umax"; case AtomicRMWInst::UMin: return "umin"; - case AtomicRMWInst::FAdd: - return "fadd"; - case AtomicRMWInst::FSub: - return "fsub"; case AtomicRMWInst::BAD_BINOP: return "<invalid operation>"; } |