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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
lldb
/
test
/
API
/
lang
/
cpp
/
alignas_base_class
/
main.cpp
blob
8dfced6c784e1029977be534c9db1106b5bfe53f
1
struct
B1
{
2
char
f1
;
3
};
4
5
struct
alignas
(
8
)
B2
{
6
char
f2
;
7
};
8
9
struct
D
:
B1
,
B2
{};
10
11
D d3g
;
12
13
int
main
() {}