blob: 13acd816bbbe34c1a91e89b8d7bb7610e83d62d6 [file] [log] [blame]
// RUN: not %llvmgcc -xc %s -S -o -
// This is a malformed program that is not caught by llvmgcc3.
// XFAIL: llvmgcc3
int one (int a) {
two (a, 5);
return 0;
}
static int two (int a, int b) {
}