Skip to content

Commit 56a9158

Browse files
committed
Use single quote
1 parent 9de33db commit 56a9158

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/utils/TableGen/Common/PredicateExpander.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,13 @@ void PredicateExpander::expandCheckOpcode(raw_ostream &OS,
152152
}
153153

154154
if (shouldNegate())
155-
OS << "!";
155+
OS << '!';
156156
OS << "llvm::is_contained(";
157157
ListSeparator Sep;
158-
OS << "{";
158+
OS << '{';
159159
for (const Record *Inst : Opcodes)
160160
OS << Sep << Inst->getValueAsString("Namespace") << "::" << Inst->getName();
161-
OS << "}";
161+
OS << '}';
162162
OS << ", MI" << (isByRef() ? "." : "->") << "getOpcode())";
163163
}
164164

0 commit comments

Comments
 (0)