]> granicus.if.org Git - clang/commitdiff
Remote this unreliable test case because it did not do its job.
authorDevang Patel <dpatel@apple.com>
Mon, 13 Jun 2011 23:14:35 +0000 (23:14 +0000)
committerDevang Patel <dpatel@apple.com>
Mon, 13 Jun 2011 23:14:35 +0000 (23:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132948 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenObjC/debug-info-foreach.m [deleted file]

diff --git a/test/CodeGenObjC/debug-info-foreach.m b/test/CodeGenObjC/debug-info-foreach.m
deleted file mode 100644 (file)
index 89b409c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -fobjc-default-synthesize-properties -emit-llvm -g %s -o %t 
-// RUN: grep DW_TAG_lexical_block %t | count 5
-// rdar://8757124
-
-@class NSArray;
-
-int i;
-void f(NSArray *a) {
-  id keys;
-  for (id thisKey in keys) {
-    int j = i;
-    ++j;
-    i = j;
-  }
-  for (id thisKey in keys) {
-    int k = i;
-    ++k;
-    i = k;
-  }
-}