llvm-6502/test/CFrontend/2004-02-20-StaticRedeclare.c.tr
2004-11-30 16:48:26 +00:00

10 lines
144 B
Plaintext

// 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) {
}