diff options
author | Jonathan Thackray <jonathan.thackray@arm.com> | 2025-04-28 16:53:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 16:53:36 +0100 |
commit | 7ee0097b486b31be8b9a1750b2cd47580efd9587 (patch) | |
tree | 1631f6dddbe25cfb56bd4a51833b470d1bba5b57 /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | ac40bc7d5f52db38fa3cbb9e2599dd4272dc2409 (diff) | |
download | llvm-7ee0097b486b31be8b9a1750b2cd47580efd9587.zip llvm-7ee0097b486b31be8b9a1750b2cd47580efd9587.tar.gz llvm-7ee0097b486b31be8b9a1750b2cd47580efd9587.tar.bz2 |
Revert "[llvm] Add support for llvm IR atomicrmw fminimum/fmaximum instructions" (#137657)
Reverts llvm/llvm-project#136759 due to bad interaction with c792b25e4
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 0e75c44..1d7aa18 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -1356,10 +1356,6 @@ static AtomicRMWInst::BinOp getDecodedRMWOperation(unsigned Val) { case bitc::RMW_FSUB: return AtomicRMWInst::FSub; case bitc::RMW_FMAX: return AtomicRMWInst::FMax; case bitc::RMW_FMIN: return AtomicRMWInst::FMin; - case bitc::RMW_FMAXIMUM: - return AtomicRMWInst::FMaximum; - case bitc::RMW_FMINIMUM: - return AtomicRMWInst::FMinimum; case bitc::RMW_UINC_WRAP: return AtomicRMWInst::UIncWrap; case bitc::RMW_UDEC_WRAP: |