repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2015-09-24 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
objc
/
execute
/
bf-2.m
blob
f776eea5deda5abf9082cc47aea4057ae8d51f3c
1
#include <objc/objc.h>
2
3
@interface MyObject
4
{
5
Class isa;
6
float f;
7
char a[3];
8
struct {
9
int i:2;
10
int j:3;
11
int k:12;
12
} flags;
13
char c;
14
void *pointer;
15
}
16
@end
17
18
@implementation MyObject
19
@end
20
21
#include "bf-common.h"
22