aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2003-11-04-OutOfMemory.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2003-11-04-OutOfMemory.c')
-rw-r--r--test/FrontendC/2003-11-04-OutOfMemory.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/FrontendC/2003-11-04-OutOfMemory.c b/test/FrontendC/2003-11-04-OutOfMemory.c
new file mode 100644
index 0000000..6a42e16
--- /dev/null
+++ b/test/FrontendC/2003-11-04-OutOfMemory.c
@@ -0,0 +1,9 @@
+// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+
+void schedule_timeout(signed long timeout)
+{
+ switch (timeout)
+ {
+ case ((long)(~0UL>>1)): break;
+ }
+}