This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
52f820ead4
llvm-project
/
clang
/
test
/
ASTMerge
/
Inputs
/
exprs2.c
9 lines
103 B
C
Raw
Normal View
History
Unescape
Escape
AST import for character literals llvm-svn: 96557
2010-02-18 10:21:22 +08:00
// Matching
enum
E0
{
AST import of parenthesized expressions, unary operators, binary operators, and compound assignment operators. llvm-svn: 96643
2010-02-19 09:07:06 +08:00
E0_Val0
=
'
a
'
,
E0_Val1
=
(
17
)
,
AST import for DeclRefExprs llvm-svn: 96646
2010-02-19 09:17:02 +08:00
E0_Val2
=
(
1
<
<
2
)
,
E0_Val3
=
E0_Val2
AST import for character literals llvm-svn: 96557
2010-02-18 10:21:22 +08:00
}
;