Skip to content

Commit 0795d56

Browse files
committed
Don't use -ve/+ve terms
1 parent f7af184 commit 0795d56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/utils/TableGen/DecoderEmitter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,8 +929,8 @@ unsigned DecoderEmitter::emitTable(formatted_raw_ostream &OS,
929929
uint64_t NegativeMask = DecodeAndEmitULEB128(I, OS);
930930

931931
StartComment();
932-
OS << "+ve mask: " << format_hex(PositiveMask, 0)
933-
<< "-ve mask: " << format_hex(NegativeMask, 0);
932+
OS << "positive mask: " << format_hex(PositiveMask, 0)
933+
<< "negative mask: " << format_hex(NegativeMask, 0);
934934
break;
935935
}
936936
}

0 commit comments

Comments
 (0)