repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[RISCV][FMV] Support target_clones (#85786)
[llvm-project.git]
/
clang
/
test
/
CodeGenObjC
/
unname-bf-metadata.m
blob
c1208c142ca32437ac81b73097ecd6967ebdb90e
1
// RUN: %clang_cc1 -emit-llvm -o %t %s
2
// Test that meta-data for ivar lists with unnamed bitfield are generated.
3
//
4
@interface Foo {
5
@private
6
int first;
7
int :1;
8
int third :1;
9
int :1;
10
int fifth :1;
11
}
12
@end
13
@implementation Foo
14
@end