[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/2006-12-01-float_varg.c

Jim Laskey jlaskey at apple.com
Fri Dec 1 11:48:42 PST 2006



Changes in directory llvm-test/SingleSource/UnitTests:

2006-12-01-float_varg.c added (r1.1)
---
Log message:

Add float vararg test.

---
Diffs of the changes:  (+6 -0)

 2006-12-01-float_varg.c |    6 ++++++
 1 files changed, 6 insertions(+)


Index: llvm-test/SingleSource/UnitTests/2006-12-01-float_varg.c
diff -c /dev/null llvm-test/SingleSource/UnitTests/2006-12-01-float_varg.c:1.1
*** /dev/null	Fri Dec  1 13:48:37 2006
--- llvm-test/SingleSource/UnitTests/2006-12-01-float_varg.c	Fri Dec  1 13:48:26 2006
***************
*** 0 ****
--- 1,6 ----
+ #include <stdio.h>
+ 
+ int main(int argc, char *argv[]) {
+   printf("foo %f %f %f %f\n", 1.23, 12312.1, 3.1, 13.1);
+   return 0;
+ }






More information about the llvm-commits mailing list