convert bitfield initializer tarvals before using them
[libfirm] / ir / be / test / fehler119.c
index f287066..622eee9 100644 (file)
@@ -1,4 +1,10 @@
+/*$ -std=c99 $*/
 int f(int x)
 {
        return sizeof(char*[x]);
 }
+
+int main(void)
+{
+       return f(23) != sizeof(char*) * 23;
+}