Check that nested functions don't get pointless

static chains.

llvm-svn: 45936
This commit is contained in:
Duncan Sands 2008-01-13 18:44:12 +00:00
parent 826e91ae04
commit 93ebe1df27
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
// RUN: %llvmgcc -S %s -o - -fnested-functions | not grep nest
void n1(void) { void a(void) { a(); } a(); }