[llvm] 6c84d64 - [IR][NFC] Remove obsolete comments in `BinaryOperator::swapOperands` (#125819)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 02:07:06 PST 2025
Author: Yingwei Zheng
Date: 2025-02-05T18:06:59+08:00
New Revision: 6c84d64ffc91a820d71c328102552e5791677a82
URL: https://github.com/llvm/llvm-project/commit/6c84d64ffc91a820d71c328102552e5791677a82
DIFF: https://github.com/llvm/llvm-project/commit/6c84d64ffc91a820d71c328102552e5791677a82.diff
LOG: [IR][NFC] Remove obsolete comments in `BinaryOperator::swapOperands` (#125819)
Closes https://github.com/llvm/llvm-project/issues/125438
Added:
Modified:
llvm/lib/IR/Instructions.cpp
Removed:
################################################################################
diff --git a/llvm/lib/IR/Instructions.cpp b/llvm/lib/IR/Instructions.cpp
index 1fdf0eab548fdd..e2d607368e94bf 100644
--- a/llvm/lib/IR/Instructions.cpp
+++ b/llvm/lib/IR/Instructions.cpp
@@ -2702,8 +2702,7 @@ BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
// Exchange the two operands to this instruction. This instruction is safe to
// use on any binary instruction and does not modify the semantics of the
-// instruction. If the instruction is order-dependent (SetLT f.e.), the opcode
-// is changed.
+// instruction.
bool BinaryOperator::swapOperands() {
if (!isCommutative())
return true; // Can't commute operands
More information about the llvm-commits
mailing list