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
/
Layout
/
dump-complete.cpp
blob
9ccbf477c7052eb5afce30309c33fe600d4d5456
1
// RUN: %clang_cc1 -emit-llvm-only -fdump-record-layouts-complete %s | FileCheck %s
2
3
struct
a
{
4
int
x
;
5
};
6
7
struct
b
{
8
char
y
;
9
}
foo
;
10
11
class
c
{};
12
13
class
d
;
14
15
// CHECK: 0 | struct a
16
// CHECK: 0 | struct b
17
// CHECK: 0 | class c
18
// CHECK-NOT: 0 | class d