aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-05-19 00:51:56 +0000
committerEric Christopher <echristo@apple.com>2012-05-19 00:51:56 +0000
commit75f89b54b588521e9e5aac113e3c4f7088bb6106 (patch)
tree6020ac14f019b67ea5620189598a22f9838b9206 /test
parent8aa22019ca5ef29a15058be905d782e7225aa206 (diff)
downloadexternal_llvm-75f89b54b588521e9e5aac113e3c4f7088bb6106.zip
external_llvm-75f89b54b588521e9e5aac113e3c4f7088bb6106.tar.gz
external_llvm-75f89b54b588521e9e5aac113e3c4f7088bb6106.tar.bz2
Add support for the 'd' mips inline asm output modifier.
Patch by Jack Carter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/Mips/inlineasm-operand-code.ll6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/CodeGen/Mips/inlineasm-operand-code.ll b/test/CodeGen/Mips/inlineasm-operand-code.ll
index 63190fa..92abf84 100644
--- a/test/CodeGen/Mips/inlineasm-operand-code.ll
+++ b/test/CodeGen/Mips/inlineasm-operand-code.ll
@@ -17,5 +17,11 @@ entry:
;CHECK: #NO_APP
tail call i32 asm sideeffect "addi $0,$1,${2:x}", "=r,r,I"(i32 7, i32 -3) nounwind
+; d with -3
+;CHECK: #APP
+;CHECK: addi ${{[0-9]+}},${{[0-9]+}},-3
+;CHECK: #NO_APP
+ tail call i32 asm sideeffect "addi $0,$1,${2:d}", "=r,r,I"(i32 7, i32 -3) nounwind
+
ret i32 0
}