Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm/lib/TableGen/Record.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2786,7 +2786,7 @@ bool DagInit::isConcrete() const {
std::string DagInit::getAsString() const {
std::string Result = "(" + Val->getAsString();
if (ValName)
Result += ":" + ValName->getAsUnquotedString();
Result += ":$" + ValName->getAsUnquotedString();
if (!arg_empty()) {
Result += " ";
ListSeparator LS;
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/TableGen/usevalname.td
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ multiclass shuffle<Reg RC> {
RC:$src1, RC:$src2))]>;
}

// CHECK: shufp:src3
// CHECK: shufp:$src3
defm ADD : shuffle<VR128>;
Loading