repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git]
/
test
/
FrontendC++
/
2006-10-30-ClassBitfield.cpp
blob
bd3b173cf8fdc98608d1dd709544cd50c47821bc
1
// RUN: %llvmgxx %s -emit-llvm -S -o -
2
// PR954
3
4
struct
_Refcount_Base
{
5
unsigned long
_M_ref_count
;
6
int
_M_ref_count_lock
;
7
_Refcount_Base
() :
_M_ref_count
(
0
) {}
8
};
9
10
struct
_Rope_RopeRep
:
public
_Refcount_Base
11
{
12
public
:
13
int
_M_tag
:
8
;
14
};
15
16
int
foo
(
_Rope_RopeRep
*
r
) {
return
r
->
_M_tag
; }