summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/inlineasm3.ll
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-07-01 00:14:47 +0000
committerEric Christopher <echristo@apple.com>2011-07-01 00:14:47 +0000
commit89bd71fc53fc95f2526e07ec338a8c998e9ead8d (patch)
tree5e8f5ca83dcaed758d50081beb33742ea7e30efc /test/CodeGen/ARM/inlineasm3.ll
parentc3882164cbf794dbe21816a2946a31bc9e02a419 (diff)
Add support for the 'x' constraint.
Part of rdar://9307836 and rdar://9119939 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/inlineasm3.ll')
-rw-r--r--test/CodeGen/ARM/inlineasm3.ll10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/inlineasm3.ll b/test/CodeGen/ARM/inlineasm3.ll
index 58687b96924..f09deb39f8c 100644
--- a/test/CodeGen/ARM/inlineasm3.ll
+++ b/test/CodeGen/ARM/inlineasm3.ll
@@ -58,3 +58,13 @@ entry:
call void asm sideeffect "flds s15, $0 \0A", "*^Uvm,~{s15}"(float* @k.2126) nounwind
ret i32 0
}
+
+; Radar 9307836 & 9119939
+
+define float @t6(float %y) nounwind {
+entry:
+; CHECK: t6
+; CHECK: flds s15, s0
+ %0 = tail call float asm "flds s15, $0", "=x"() nounwind
+ ret float %0
+}