[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c

Reid Spencer reid at x10sys.com
Wed Jan 17 18:10:19 PST 2007



Changes in directory llvm-test/SingleSource/UnitTests/SignlessTypes:

ccc.c updated: 1.1 -> 1.2
---
Log message:

Don't reference stderr, lli can't find it on Linux because it is both a
global variable and a macro!


---
Diffs of the changes:  (+1 -1)

 ccc.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c
diff -u llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.1 llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.2
--- llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c:1.1	Wed Jan 10 11:54:02 2007
+++ llvm-test/SingleSource/UnitTests/SignlessTypes/ccc.c	Wed Jan 17 20:10:04 2007
@@ -35,7 +35,7 @@
   unsigned short ush;
 
   if (argc < 2) {
-    fprintf(stderr, "Program requires integer parameter");
+    printf("Program requires integer parameter");
     exit (1);
   }
 






More information about the llvm-commits mailing list