llvm-6502/test/CFrontend/2004-02-20-StaticRedeclare.c.tr

10 lines
144 B
Plaintext
Raw Normal View History

// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep declare
int one (int a) {
two (a, 5);
return 0;
}
static int two (int a, int b) {
}