eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / thread.c
index 27e48f9..f48f60a 100644 (file)
@@ -6,7 +6,7 @@ __thread int tls_i[10];
 __thread int tls_j = 5;
 
 int test(int i) {
-        tls_j = i;
+       tls_j = i;
        return tls_i[i];
 }