[cfe-commits] r132948 - /cfe/trunk/test/CodeGenObjC/debug-info-foreach.m

Devang Patel dpatel at apple.com
Mon Jun 13 16:14:35 PDT 2011


Author: dpatel
Date: Mon Jun 13 18:14:35 2011
New Revision: 132948

URL: http://llvm.org/viewvc/llvm-project?rev=132948&view=rev
Log:
Remote this unreliable test case because it did not do its job.

Removed:
    cfe/trunk/test/CodeGenObjC/debug-info-foreach.m

Removed: cfe/trunk/test/CodeGenObjC/debug-info-foreach.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/debug-info-foreach.m?rev=132947&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenObjC/debug-info-foreach.m (original)
+++ cfe/trunk/test/CodeGenObjC/debug-info-foreach.m (removed)
@@ -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
-
- at 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;
-  }
-}





More information about the cfe-commits mailing list