From 53e40e4b06cfbd5031ce3dd6bd17174db9b82ba0 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 4 Jul 2013 14:13:53 +0000 Subject: [PATCH] Clang has no nested function support. Delete this test. llvm-svn: 185628 --- clang/test/CodeGen/2008-01-11-ChainConsistency.c | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 clang/test/CodeGen/2008-01-11-ChainConsistency.c diff --git a/clang/test/CodeGen/2008-01-11-ChainConsistency.c b/clang/test/CodeGen/2008-01-11-ChainConsistency.c deleted file mode 100644 index 9ae021f6da58..000000000000 --- a/clang/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(); }