diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 01:19:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-04-21 01:19:10 +0000 |
commit | 50b5c4ccaa5880e93152c2a8b85f11fa52ffd717 (patch) | |
tree | 0c22e16fc2c42cb8aa278a4839d2ab4a4f2074ff | |
parent | 9df980b876b888acbcbd1e092ade6a84584175dc (diff) | |
download | bcm5719-llvm-50b5c4ccaa5880e93152c2a8b85f11fa52ffd717.tar.gz bcm5719-llvm-50b5c4ccaa5880e93152c2a8b85f11fa52ffd717.zip |
Revert 69646, that was the precise inverse of what I wanted to commit.
llvm-svn: 69647
-rw-r--r-- | clang/test/CodeGenObjC/bitfield-ivar-offsets.m | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/clang/test/CodeGenObjC/bitfield-ivar-offsets.m b/clang/test/CodeGenObjC/bitfield-ivar-offsets.m index c97b54f5db1..23a09a3a15b 100644 --- a/clang/test/CodeGenObjC/bitfield-ivar-offsets.m +++ b/clang/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 |