Skip to content

Commit 46a24fa

Browse files
committed
fixup! fix copy paste mistake in error message.
1 parent 6ab9b56 commit 46a24fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/utils/TableGen/Common/CodeGenDAGPatterns.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,8 +1078,8 @@ std::string TreePredicateFn::getPredCode() const {
10781078
if (isAtomic()) {
10791079
if ((isAnyExtLoad() + isSignExtLoad() + isZeroExtLoad()) > 1)
10801080
PrintFatalError(getOrigPatFragRecord()->getRecord()->getLoc(),
1081-
"IsNonExtLoad, IsAnyExtLoad, IsSignExtLoad, and "
1082-
"IsZeroExtLoad are mutually exclusive");
1081+
"IsAnyExtLoad, IsSignExtLoad, and IsZeroExtLoad are "
1082+
"mutually exclusive");
10831083

10841084
if (isAnyExtLoad())
10851085
Code += "if (cast<AtomicSDNode>(N)->getExtensionType() != ISD::EXTLOAD) "

0 commit comments

Comments
 (0)