summaryrefslogtreecommitdiff
path: root/test/CFrontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-03 04:39:16 +0000
committerChris Lattner <sabre@nondot.org>2005-01-03 04:39:16 +0000
commit2abc27dfeacf3d676c61bc2d9f8492ecfc4f3c2b (patch)
treeae8b63c6f63b7c270de32b45b3497da56af42a7f /test/CFrontend
parent8de9f23fda43d2fceab37aff018f7b54d7abf7e8 (diff)
downloadllvm-2abc27dfeacf3d676c61bc2d9f8492ecfc4f3c2b.tar.gz
llvm-2abc27dfeacf3d676c61bc2d9f8492ecfc4f3c2b.tar.bz2
llvm-2abc27dfeacf3d676c61bc2d9f8492ecfc4f3c2b.tar.xz
new testcase for PR481
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19270 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/2005-01-02-VAArgError-ICE.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CFrontend/2005-01-02-VAArgError-ICE.c b/test/CFrontend/2005-01-02-VAArgError-ICE.c
new file mode 100644
index 0000000000..26a2da0817
--- /dev/null
+++ b/test/CFrontend/2005-01-02-VAArgError-ICE.c
@@ -0,0 +1,10 @@
+// This file is erroneous, but should not cause the compiler to ICE.
+// PR481
+// RUN: %llvmgcc %s -S -o /dev/null 2>&1 | not grep 'internal compiler error'
+
+#include <stdarg.h>
+int flags(int a, int b, ...) {
+ va_list args;
+ va_start(args,a); // not the last named arg
+ foo(args);
+}