mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-08 04:52:50 +00:00
ARM64: remove '#' from annotation of add/sub immediate
The full string used to be "// =#12" for example, which looks too busy. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209443 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d16404a0e7
commit
634d64e3bb
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user