Commit 9a63babb by Jim Stichnoth

Subzero: With -asm-verbose, make the predecessor list more compact.

Instead of a comment like this: # preds=.Lfv_update_nonbon$split___114___115_0,.Lfv_update_nonbon$split___138___115_1 remove some redundancy and make the comment like this: # preds=$split___114___115_0,$split___138___115_1 This makes it slightly easier to read, and less likely to exceed 80 columns. BUG= none R=kschimpf@google.com Review URL: https://codereview.chromium.org/1380323003 .
parent 4e6ea83a
...@@ -997,7 +997,7 @@ void CfgNode::emit(Cfg *Func) const { ...@@ -997,7 +997,7 @@ void CfgNode::emit(Cfg *Func) const {
if (!First) if (!First)
Str << ","; Str << ",";
First = false; First = false;
Str << I->getAsmName(); Str << "$" << I->getName();
} }
Str << "\n"; Str << "\n";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment