Make fehler159 compilable.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 11 Oct 2008 06:26:42 +0000 (06:26 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 11 Oct 2008 06:26:42 +0000 (06:26 +0000)
[r22663]

ir/be/test/fehler159.c

index de1766e..d25376a 100644 (file)
@@ -1,14 +1,12 @@
 /*$  -fgvn-pre -fno-gcse $*/
 
-int something(int n);
-
 int test() {
        int i;
        char inUse16[16];
 
        i = 0;
        do {
-       if (something(1) == 1)
+       if (rand() == 1)
                inUse16[i] = 1;
         else
                inUse16[i] = 0;
@@ -17,3 +15,8 @@ int test() {
 
     return inUse16[0];
 }
+
+int main(void)
+{
+       return 0;
+}