diff options
author | Tim Northover <tnorthover@apple.com> | 2014-05-22 14:20:05 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-05-22 14:20:05 +0000 |
commit | b2a6fdb11a81d8b2b7ef1c34c7e50d86b282a3ff (patch) | |
tree | 4cff0eb96d61b74d175cf96b17a6003d9e42a0ce /llvm/lib | |
parent | 7f8af8bf91ac2d33eceac932e3f5282ab2db25ba (diff) | |
download | bcm5719-llvm-b2a6fdb11a81d8b2b7ef1c34c7e50d86b282a3ff.tar.gz bcm5719-llvm-b2a6fdb11a81d8b2b7ef1c34c7e50d86b282a3ff.zip |
ARM64: remove '#' from annotation of add/sub immediate
The full string used to be "// =#12" for example, which looks too
busy.
llvm-svn: 209443
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp b/llvm/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp index 48fba37146e..529b450352e 100644 --- a/llvm/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp +++ b/llvm/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp @@ -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(); |