We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0acddb commit 1a4d588Copy full SHA for 1a4d588
llvm/lib/TableGen/Record.cpp
@@ -2786,7 +2786,7 @@ bool DagInit::isConcrete() const {
2786
std::string DagInit::getAsString() const {
2787
std::string Result = "(" + Val->getAsString();
2788
if (ValName)
2789
- Result += ":" + ValName->getAsUnquotedString();
+ Result += ":$" + ValName->getAsUnquotedString();
2790
if (!arg_empty()) {
2791
Result += " ";
2792
ListSeparator LS;
llvm/test/TableGen/usevalname.td
@@ -20,5 +20,5 @@ multiclass shuffle<Reg RC> {
20
RC:$src1, RC:$src2))]>;
21
}
22
23
-// CHECK: shufp:src3
+// CHECK: shufp:$src3
24
defm ADD : shuffle<VR128>;
0 commit comments