From: Daniel Dunbar Date: Tue, 21 Apr 2009 01:19:10 +0000 (+0000) Subject: Revert 69646, that was the precise inverse of what I wanted to commit. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7d6c3de64009fb13c12f044b606e3d766faa082;p=clang Revert 69646, that was the precise inverse of what I wanted to commit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69647 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenObjC/bitfield-ivar-offsets.m b/test/CodeGenObjC/bitfield-ivar-offsets.m index c97b54f5db..23a09a3a15 100644 --- a/test/CodeGenObjC/bitfield-ivar-offsets.m +++ b/test/CodeGenObjC/bitfield-ivar-offsets.m @@ -8,9 +8,6 @@ // RUN: grep -F '@"OBJC_IVAR_$_I0._y" = global i64 6, section "__DATA, __objc_const", align 8' %t && // RUN: grep -F '@"OBJC_IVAR_$_I0._b4" = global i64 7, section "__DATA, __objc_const", align 8' %t && // RUN: grep -F '@"OBJC_IVAR_$_I0." = global' %t | count 0 && -// RUN: grep -F '@"OBJC_IVAR_$_I1._c0" = global i64 8, section "__DATA, __objc_const", align 8' %t && -// RUN: grep -F '@"OBJC_IVAR_$_I1._c1" = global i64 9, section "__DATA, __objc_const", align 8' %t && -// RUN: grep -F '@"OBJC_IVAR_$_I1._c2" = global i64 9, section "__DATA, __objc_const", align 8' %t && // RUN: true @interface I0 { @@ -25,15 +22,5 @@ } @end -@interface I1 : I0 { - char _c0:4; - char _c1:5; - char _c2:2; -} -@end - @implementation I0 @end - -@implementation I1 -@end