blob: 40cb6c2e21e4ba96789ed1c1054dc520d44ac508 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3void schedule_timeout(signed long timeout)
4{
5 switch (timeout)
6 {
7 case ((long)(~0UL>>1)): break;
8 }
9}