Commit b8aa705c by Richard Henderson

New test.

From-SVN: r65062
parent 3d1f4922
/* PR opt/10011 */
/* This is link test for builtin_constant_p simplification + DCE. */
extern void link_error(void);
static void usb_hub_port_wait_reset(unsigned int delay)
{
int delay_time;
for (delay_time = 0; delay_time < 500; delay_time += delay) {
if (__builtin_constant_p(delay))
link_error();
}
}
int main() { return 0; }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment