[llvm-commits] [test-suite] r58161 - /test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c

Dan Gohman gohman at apple.com
Sat Oct 25 15:26:50 PDT 2008


Author: djg
Date: Sat Oct 25 17:26:50 2008
New Revision: 58161

URL: http://llvm.org/viewvc/llvm-project?rev=58161&view=rev
Log:
Make this test return 0 instead of TestVal. TestVal is already
printed to stdout for comparison.

Modified:
    test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c

Modified: test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c?rev=58161&r1=58160&r2=58161&view=diff

==============================================================================
--- test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c (original)
+++ test-suite/trunk/SingleSource/UnitTests/SignlessTypes/ccc.c Sat Oct 25 17:26:50 2008
@@ -50,5 +50,5 @@
 
   printf("%d %hd %hu\n", TestVal, sh, ush);
 
-  return TestVal;
+  return 0;
 }





More information about the llvm-commits mailing list