2 20140212-2.c from the execute part of the gcc torture suite.
11 /* This used to fail as we would convert f into just return (unsigned int)usVlanID
14 int f(unsigned short usVlanID
);
15 int f(unsigned short usVlanID
)
17 unsigned int uiVlanID
= 0xffffffff;
18 if ((unsigned short)0xffff != usVlanID
)
19 uiVlanID
= (unsigned int)usVlanID
;
24 testTortureExecute (void)
27 ASSERT (f(0xffff) == -1);