From: Rafael Espindola Date: Thu, 4 Jul 2013 14:13:53 +0000 (+0000) Subject: Clang has no nested function support. Delete this test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b08245f13e6537c9c7540b54e35617703d9cc86d;p=clang Clang has no nested function support. Delete this test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@185628 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/2008-01-11-ChainConsistency.c b/test/CodeGen/2008-01-11-ChainConsistency.c deleted file mode 100644 index 9ae021f6da..0000000000 --- a/test/CodeGen/2008-01-11-ChainConsistency.c +++ /dev/null @@ -1,3 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - -fnested-functions | not grep nest - -void n1(void) { void a(void) { a(); } a(); }