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