blob: db8255846274774bab1dda3b3bea9038685b83fc [file] [log] [blame]
Chris Lattner2abc27d2005-01-03 04:39:16 +00001// This file is erroneous, but should not cause the compiler to ICE.
2// PR481
Reid Spencer4cda1902007-04-16 15:15:52 +00003// RUN: %llvmgcc %s -S -o /dev/null |& not grep {internal compiler error}
Chris Lattner2abc27d2005-01-03 04:39:16 +00004
5#include <stdarg.h>
6int flags(int a, int b, ...) {
7 va_list args;
8 va_start(args,a); // not the last named arg
9 foo(args);
10}