File: 2009-04-27-bitfield-vs-ivar.m

package info (click to toggle)
llvm-2.7 2.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 59,992 kB
  • ctags: 49,499
  • sloc: cpp: 373,792; ansic: 16,885; sh: 12,614; asm: 6,809; ada: 3,083; ml: 2,942; python: 2,671; perl: 2,404; makefile: 1,691; pascal: 1,235; exp: 399; objc: 291; lisp: 184; csh: 117; xml: 38; f90: 36
file content (44 lines) | stat: -rw-r--r-- 784 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// RUN: %llvmgcc -S -x objective-c -m64 -fobjc-abi-version=2 %s -o %t
// RUN: grep {OBJC_CLASS_RO_\\\$_I4} %t | grep {i32 0, i32 1, i32 2, i32 0}
// RUN: grep {OBJC_CLASS_RO_\\\$_I2} %t | grep {i32 0, i32 1, i32 1, i32 0}
// RUN: grep {OBJC_CLASS_RO_\\\$_I5} %t | grep {i32 0, i32 0, i32 0, i32 0}
// XTARGET: darwin

// Test instance variable sizing when base class ends in bitfield
@interface I3 {
  unsigned int _iv2 :1;
}
@end

@interface I4 : I3 {
  char _iv4;
}
@end

// Test case with no instance variables in derived class
@interface I1 {
  unsigned int _iv2 :1;
}
@end

@interface I2 : I1 {
}
@end

// Test case with no instance variables anywhere
@interface I6 {
}
@end

@interface I5 : I6 {
}
@end

@implementation I4
@end

@implementation I2
@end

@implementation I5
@end