OSDN Git Service

2009-05-19 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr33122.c
1 struct dis386 {
2   const char *x;
3 };
4
5 static const struct dis386 float_reg[][2] = {
6   { { "fadd" }, { "fadd" } },
7 };
8
9 void foo(int i, int j)
10 {
11   const struct dis386 *dp;
12
13   dp = &float_reg[i - 1][j];
14 }