blob: ade45317ac90997c3510ea6434035dfbff60c6eb [file] [log] [blame]
// Used to crash on the alpha with optimization.
// Special g++ Options: -w
extern "C" void abort (void);
struct Fix {
unsigned short l;
};
static inline void f (int len)
{
if (len > 65535)
abort ();
}
struct Fix a = { 33 };
main()
{
f (a.l);
}