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]
/
clang
/
test
/
Modules
/
Inputs
/
F.framework
/
PrivateHeaders
/
NS.h
blob
5e947ba90518b9727dc65324b64177c2f15f3ad6
1
struct
NS
{
2
int
a
;
3
int
b
;
4
};
5
6
enum
NSE
{
7
FST
=
22
,
8
SND
=
43
,
9
TRD
=
55
10
};
11
12
#define NS_ENUM(_type, _name) \
13
enum _name : _type _name; \
14
enum _name : _type
15
16
typedef
NS_ENUM
(
int
,
NSMyEnum
) {
17
MinX
=
11
,
18
MinXOther
=
MinX
,
19
};