blob: 579c93daae58777b9a71317bbaae2cd334736ab4 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3void schedule_timeout(signed long timeout)
4{
5 switch (timeout)
6 {
7 case ((long)(~0UL>>1)): break;
8 }
9}