llvm-6502/test/CFrontend/2008-01-11-ChainConsistency.c
Duncan Sands 1fac17f2e7 Check that nested functions don't get pointless
static chains.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45936 91177308-0d34-0410-b5e6-96231b3b80d8
2008-01-13 18:44:12 +00:00

4 lines
109 B
C

// RUN: %llvmgcc -S %s -o - -fnested-functions | not grep nest
void n1(void) { void a(void) { a(); } a(); }