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
This commit is contained in:
Duncan Sands 2008-01-13 18:44:12 +00:00
parent e3a8830c1d
commit 1fac17f2e7

View File

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