Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.jason / optimize2.C
blob58b3b127f5a13d6b82cd6e2621e84497deecffe7
1 // { dg-do run  }
2 // { dg-options "-w" }
3 // Used to crash on the alpha with optimization.
5 extern "C" void abort (void);
7 struct Fix {
8   unsigned short l;
9 };
11 static inline void f (int len)
13   if (len > 65535)
14     abort ();
17 struct Fix a = { 33 };
19 main()
21   f (a.l);