[llvm] 1e3a344 - [CodeGen] Update a comment from NoSSA to IsSSA
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 24 01:52:24 PDT 2023
Author: Jay Foad
Date: 2023-10-24T09:52:08+01:00
New Revision: 1e3a344a6bab9dbe3a767368b878f20e29c57a2a
URL: https://github.com/llvm/llvm-project/commit/1e3a344a6bab9dbe3a767368b878f20e29c57a2a
DIFF: https://github.com/llvm/llvm-project/commit/1e3a344a6bab9dbe3a767368b878f20e29c57a2a.diff
LOG: [CodeGen] Update a comment from NoSSA to IsSSA
Added:
Modified:
llvm/lib/CodeGen/MachineVerifier.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp
index de6d78027d098bc..f3e676b3a41a2cb 100644
--- a/llvm/lib/CodeGen/MachineVerifier.cpp
+++ b/llvm/lib/CodeGen/MachineVerifier.cpp
@@ -2163,9 +2163,9 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
// Verify two-address constraints after the twoaddressinstruction pass.
// Both twoaddressinstruction pass and phi-node-elimination pass call
- // MRI->leaveSSA() to set MF as NoSSA, we should do the verification after
- // twoaddressinstruction pass not after phi-node-elimination pass. So we
- // shouldn't use the NoSSA as the condition, we should based on
+ // MRI->leaveSSA() to set MF as not IsSSA, we should do the verification
+ // after twoaddressinstruction pass not after phi-node-elimination pass. So
+ // we shouldn't use the IsSSA as the condition, we should based on
// TiedOpsRewritten property to verify two-address constraints, this
// property will be set in twoaddressinstruction pass.
unsigned DefIdx;
More information about the llvm-commits
mailing list