[cfe-commits] r101115 - /cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m

Fariborz Jahanian fjahanian at apple.com
Mon Apr 12 19:16:35 PDT 2010


Author: fjahanian
Date: Mon Apr 12 21:16:35 2010
New Revision: 101115

URL: http://llvm.org/viewvc/llvm-project?rev=101115&view=rev
Log:
Remove this test for now until I can figure out
why it keeps failing on buildbot (but not for me).

Removed:
    cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m

Removed: cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m?rev=101114&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m (original)
+++ cfe/trunk/test/CodeGenObjC/objc-gc-aggr-assign.m (removed)
@@ -1,46 +0,0 @@
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
-// RUN: grep objc_memmove_collectable %t | grep call | count 3
-
-static int count;
-
-typedef struct S {
-   int ii;
-} SS;
-
-struct type_s {
-   SS may_recurse;
-   id id_val;
-};
-
- at interface NamedObject
-{
-  struct type_s type_s_ivar;
-}
-- (void) setSome : (struct type_s) arg;
-- (struct type_s) getSome;
- at property(assign) struct type_s aggre_prop;
- at end
-
- at implementation NamedObject 
-- (void) setSome : (struct type_s) arg
-  {
-     type_s_ivar = arg;
-  }
-- (struct type_s) getSome 
-  {
-    return type_s_ivar;
-  }
- at synthesize aggre_prop = type_s_ivar;
- at end
-
-struct type_s some = {{1234}, (id)0};
-
-struct type_s get(void)
-{
-  return some;
-}
-
-void f(const struct type_s *in, struct type_s *out) {
-  *out = *in;
-}
-





More information about the cfe-commits mailing list