Skip to content

Commit 0e9e102

Browse files
committed
format
1 parent 92a30ec commit 0e9e102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/utils/TableGen/DAGISelMatcherEmitter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,8 +758,8 @@ EmitMatcher(const Matcher *N, const unsigned Indent, unsigned CurrentIdx,
758758
unsigned Slot = C2RMatcher->getSrcSlot();
759759
if (Reg->EnumValue > 255) {
760760
assert(isUInt<16>(Reg->EnumValue) && "not handled");
761-
OS << "OPC_EmitCopyToRegTwoByte, " << Slot << ", " << "TARGET_VAL("
762-
<< getQualifiedName(Reg->TheDef) << "),\n";
761+
OS << "OPC_EmitCopyToRegTwoByte, " << Slot << ", "
762+
<< "TARGET_VAL(" << getQualifiedName(Reg->TheDef) << "),\n";
763763
++Bytes;
764764
} else {
765765
if (Slot < 8) {

0 commit comments

Comments
 (0)