summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2014-05-22 14:20:05 +0000
committerTim Northover <tnorthover@apple.com>2014-05-22 14:20:05 +0000
commit634d64e3bbe1b6f793cbcf0b55e40d4dbb2be329 (patch)
tree53ac9e4465dd22960037a101b03dd232ad09c16c /lib
parentd16404a0e79a176b7698d9c7bc1ec146ae2f2f1b (diff)
downloadllvm-634d64e3bbe1b6f793cbcf0b55e40d4dbb2be329.tar.gz
llvm-634d64e3bbe1b6f793cbcf0b55e40d4dbb2be329.tar.bz2
llvm-634d64e3bbe1b6f793cbcf0b55e40d4dbb2be329.tar.xz
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
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp b/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp
index 48fba37146..529b450352 100644
--- a/lib/Target/ARM64/InstPrinter/ARM64InstPrinter.cpp
+++ b/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();