Skip to content

Commit

Permalink
ARM64: remove '#' from annotation of add/sub immediate
Browse files Browse the repository at this point in the history
The full string used to be "// =rust-lang#12" for example, which looks too
busy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209443 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
TNorthover committed May 22, 2014
1 parent d16404a commit 634d64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ void ARM64InstPrinter::printAddSubImm(const MCInst *MI, unsigned OpNum,
printShifter(MI, OpNum + 1, O);

if (CommentStream)
*CommentStream << "=#" << (Val << Shift) << '\n';
*CommentStream << '=' << (Val << Shift) << '\n';
} else {
assert(MO.isExpr() && "Unexpected operand type!");
O << *MO.getExpr();
Expand Down

0 comments on commit 634d64e

Please sign in to comment.