blob: 6a42e160f27905419cd78c165111788034aa99fd [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner871b1502003-11-04 18:34:05 +00003void schedule_timeout(signed long timeout)
4{
5 switch (timeout)
6 {
7 case ((long)(~0UL>>1)): break;
8 }
9}