aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-11-04-OutOfMemory.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2003-11-04-OutOfMemory.c')
-rw-r--r--test/CodeGen/2003-11-04-OutOfMemory.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/2003-11-04-OutOfMemory.c b/test/CodeGen/2003-11-04-OutOfMemory.c
new file mode 100644
index 000000000000..579c93daae58
--- /dev/null
+++ b/test/CodeGen/2003-11-04-OutOfMemory.c
@@ -0,0 +1,9 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+void schedule_timeout(signed long timeout)
+{
+ switch (timeout)
+ {
+ case ((long)(~0UL>>1)): break;
+ }
+}