Revert part of my last patch that I didn't intend to commit yet.
[oota-llvm.git] / test / CFrontend / 2008-01-11-ChainConsistency.c
1 // RUN: %llvmgcc -S %s -o - -fnested-functions | not grep nest
2
3 void n1(void) { void a(void) { a(); } a(); }