diff options
author | Jack Carter <jack.carter@imgtec.com> | 2013-03-04 21:33:15 +0000 |
---|---|---|
committer | Jack Carter <jack.carter@imgtec.com> | 2013-03-04 21:33:15 +0000 |
commit | 0e149b04f6902447595a006b75167b3aec3dc555 (patch) | |
tree | 7148be56abed1348825d87fbf1aca0517d4cc6e1 /llvm/test/CodeGen/Mips/inlineasm_constraint.ll | |
parent | 8764fe7d9aa133b037528f1d118e6a6259f2f0ee (diff) | |
download | bcm5719-llvm-0e149b04f6902447595a006b75167b3aec3dc555.tar.gz bcm5719-llvm-0e149b04f6902447595a006b75167b3aec3dc555.zip |
Mips specific inline assembler constraint 'R'
'R' An address that can be sued in a non-macro load or store.
This patch includes a positive test case.
llvm-svn: 176452
Diffstat (limited to 'llvm/test/CodeGen/Mips/inlineasm_constraint.ll')
-rw-r--r-- | llvm/test/CodeGen/Mips/inlineasm_constraint.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Mips/inlineasm_constraint.ll b/llvm/test/CodeGen/Mips/inlineasm_constraint.ll index 5adec3bb29e..8d30f45d84e 100644 --- a/llvm/test/CodeGen/Mips/inlineasm_constraint.ll +++ b/llvm/test/CodeGen/Mips/inlineasm_constraint.ll @@ -51,5 +51,14 @@ entry: ; CHECK: #NO_APP tail call i32 asm sideeffect "addi $0,$1,$2", "=r,r,P"(i32 7, i32 65535) nounwind +; Now R Which takes the address of c + %c = alloca i32, align 4 + store i32 -4469539, i32* %c, align 4 + %8 = call i32 asm sideeffect "lwl $0, 1 + $1\0A\09lwr $0, 2 + $1\0A\09", "=r,*R"(i32* %c) #1 +; CHECK: #APP +; CHECK: lwl ${{[0-9]+}}, 1 + 0(${{[0-9]+}}) +; CHECK: lwr ${{[0-9]+}}, 2 + 0(${{[0-9]+}}) +; CHECK: #NO_APP + ret i32 0 } |