aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/2006-12-01-float_varg.ll
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-12-01 19:39:32 +0000
committerJim Laskey <jlaskey@mac.com>2006-12-01 19:39:32 +0000
commitd52bbdceef17e9aaf05753e9e22c15c2745e53fc (patch)
treee57a01e84c57e3d4df0ad162ffe6d69fbfe9c703 /test/CodeGen/PowerPC/2006-12-01-float_varg.ll
parent255b47bda3d62ecaaebb624a13457e9b8da33633 (diff)
downloadexternal_llvm-d52bbdceef17e9aaf05753e9e22c15c2745e53fc.zip
external_llvm-d52bbdceef17e9aaf05753e9e22c15c2745e53fc.tar.gz
external_llvm-d52bbdceef17e9aaf05753e9e22c15c2745e53fc.tar.bz2
wrong spot
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32084 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/2006-12-01-float_varg.ll')
-rw-r--r--test/CodeGen/PowerPC/2006-12-01-float_varg.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/PowerPC/2006-12-01-float_varg.ll b/test/CodeGen/PowerPC/2006-12-01-float_varg.ll
deleted file mode 100644
index 61a0efd..0000000
--- a/test/CodeGen/PowerPC/2006-12-01-float_varg.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llvm-as < %s | llc -march=ppc64 -o - | tail -n +2 > Output/2006-12-01-float_varg.s
-; RUN: as -arch ppc64 Output/2006-12-01-float_varg.s -o Output/2006-12-01-float_varg.o
-; RUN: gcc -arch ppc64 Output/2006-12-01-float_varg.o -o Output/2006-12-01-float_varg.exe
-; RUN: Output/2006-12-01-float_varg.exe | grep "foo 1.230000 1.231210 3.100000 1.310000"
-
-%str = internal constant [17 x sbyte] c"foo %f %f %f %f\0A\00"
-
-implementation
-
-declare int %printf(sbyte*, ...)
-
-int %main(int %argc, sbyte** %argv) {
-entry:
- %tmp = tail call int (sbyte*, ...)* %printf( sbyte* getelementptr ([17 x sbyte]* %str, int 0, uint 0), double 1.23, double 1.23121, double 3.1, double 1.31 )
- ret int 0
-}