new testcase for PR481

llvm-svn: 19270
This commit is contained in:
Chris Lattner 2005-01-03 04:39:16 +00:00
parent e1329f4472
commit 588d9471f3
1 changed files with 10 additions and 0 deletions

View File

@ -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);
}