summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-10 23:58:38 +0000
committerChris Lattner <sabre@nondot.org>2009-04-10 23:58:38 +0000
commit4d59f88e60cc658db2d524d5c229b15ef2153cc0 (patch)
treede8207fd89296c8a356051aa539c3e440fd414a9 /llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll
parent92863e475e177d919ad1d1d6edf697a5173d4e09 (diff)
downloadbcm5719-llvm-4d59f88e60cc658db2d524d5c229b15ef2153cc0.tar.gz
bcm5719-llvm-4d59f88e60cc658db2d524d5c229b15ef2153cc0.zip
move a target-specific test into its directory so it isn't run if you
don't configure the ARM target in. llvm-svn: 68843
Diffstat (limited to 'llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll')
-rw-r--r--llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll20
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll b/llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll
new file mode 100644
index 00000000000..d7befa09874
--- /dev/null
+++ b/llvm/test/CodeGen/ARM/2009-02-22-SoftenFloatVaArg.ll
@@ -0,0 +1,20 @@
+; RUN: llvm-as < %s | llc
+; PR3610
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-s0:0:64-f80:32:32"
+target triple = "arm-elf"
+
+define i32 @main(i8*) nounwind {
+entry:
+ %ap = alloca i8* ; <i8**> [#uses=2]
+ store i8* %0, i8** %ap
+ %retval = alloca i32 ; <i32*> [#uses=2]
+ store i32 0, i32* %retval
+ %tmp = alloca float ; <float*> [#uses=1]
+ %1 = va_arg i8** %ap, float ; <float> [#uses=1]
+ store float %1, float* %tmp
+ br label %return
+
+return: ; preds = %entry
+ %2 = load i32* %retval ; <i32> [#uses=1]
+ ret i32 %2
+}
OpenPOWER on IntegriCloud