summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen
diff options
context:
space:
mode:
authorDylan McKay <dylanmckay34@gmail.com>2017-02-05 10:42:49 +0000
committerDylan McKay <dylanmckay34@gmail.com>2017-02-05 10:42:49 +0000
commitb78f36657e3c91f0779efaa36817257fae26af0f (patch)
treecef34ba8b9f0c10bed6230d69438511ba6692687 /llvm/test/CodeGen
parentc0fb36f4429f3b9971e87edd7d0dfedb01f4c1a6 (diff)
downloadbcm5719-llvm-b78f36657e3c91f0779efaa36817257fae26af0f.tar.gz
bcm5719-llvm-b78f36657e3c91f0779efaa36817257fae26af0f.zip
[AVR] Fix a bug where asm operands are printed twice
We would unconditionally call printOperand, even if PrintAsmOperand already printed the immediate. llvm-svn: 294121
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r--llvm/test/CodeGen/AVR/no-print-operand-twice.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AVR/no-print-operand-twice.ll b/llvm/test/CodeGen/AVR/no-print-operand-twice.ll
new file mode 100644
index 00000000000..8326507768b
--- /dev/null
+++ b/llvm/test/CodeGen/AVR/no-print-operand-twice.ll
@@ -0,0 +1,8 @@
+; RUN: llc -no-integrated-as -march=avr < %s | FileCheck %s
+
+define void @test() {
+entry:
+; CHECK: /* result: 68719476738 */
+ tail call void asm sideeffect "/* result: ${0:c} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
+ ret void
+}
OpenPOWER on IntegriCloud