mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 23:50:50 +00:00
080cafcc0e
llvm-svn: 9192
10 lines
84 B
C++
10 lines
84 B
C++
struct test {
|
|
bool A : 1;
|
|
bool B : 1;
|
|
};
|
|
|
|
void foo(test *T) {
|
|
T->B = true;
|
|
}
|
|
|