FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / optimize2.C
blobade45317ac90997c3510ea6434035dfbff60c6eb
1 // Used to crash on the alpha with optimization.
2 // Special g++ Options: -w
4 extern "C" void abort (void);
6 struct Fix {
7   unsigned short l;
8 };
10 static inline void f (int len)
12   if (len > 65535)
13     abort ();
16 struct Fix a = { 33 };
18 main()
20   f (a.l);