Added test case for pbqp construction: There seems to be missing skip patterns, so...
authorSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 23 Sep 2008 12:58:03 +0000 (12:58 +0000)
committerSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 23 Sep 2008 12:58:03 +0000 (12:58 +0000)
[r22199]

ir/be/test/fehler155.c [new file with mode: 0644]

diff --git a/ir/be/test/fehler155.c b/ir/be/test/fehler155.c
new file mode 100644 (file)
index 0000000..d4d7c45
--- /dev/null
@@ -0,0 +1,11 @@
+struct {
+       int x;
+       int lets[];
+} glob;
+
+int x = 42;
+
+int main(void) {
+       int y = glob.lets[5] + glob.lets[x * 3];
+       return y;
+}