exit with 0 so makereport is green
authorMatthias Braun <matze@braunis.de>
Thu, 1 Nov 2007 15:43:57 +0000 (15:43 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 1 Nov 2007 15:43:57 +0000 (15:43 +0000)
[r16409]

ir/be/test/rtsopt.c

index b20f354..73d1487 100644 (file)
@@ -251,6 +251,6 @@ double test_sqrt3() {
 
 /* transform exit(3) into a return 3, gcc(-), icc(-) */
 int main() {
-       exit(3);
-       return 0;
+       exit(0);
+       return 42;
 }