repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2009-04-23-bool2.cpp
blob
33c2c02d736ca30b7c899d2ab385e71fa9c19046
1
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm %s -o /dev/null
2
// g++.old-deja/g++.jason/bool2.C from gcc testsuite.
3
// Crashed before 67975 went in.
4
struct
F
{
5
bool
b1
:
1
;
6
bool
b2
:
7
;
7
};
8
9
int
main
()
10
{
11
F f
= {
true
,
true
};
12
13
if
(
int
(
f
.
b1
) !=
1
)
14
return
1
;
15
}