diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-04-15 22:40:36 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-04-15 22:40:36 +0000 |
| commit | d4ed114e2353e72d4ba920c1776e101c9c28671d (patch) | |
| tree | b77112f0cad5953f98d9013e05a9d147ba390118 /clang/test/PCH/exprs.h | |
| parent | 7836eefefc6c4c267530d9b3e65e6bad644aa694 (diff) | |
| download | bcm5719-llvm-d4ed114e2353e72d4ba920c1776e101c9c28671d.tar.gz bcm5719-llvm-d4ed114e2353e72d4ba920c1776e101c9c28671d.zip | |
PCH support for CompoundAssignOperator and ConditionalOperator
llvm-svn: 69237
Diffstat (limited to 'clang/test/PCH/exprs.h')
| -rw-r--r-- | clang/test/PCH/exprs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/PCH/exprs.h b/clang/test/PCH/exprs.h index 0c09e8fcbb7..016c4c6beee 100644 --- a/clang/test/PCH/exprs.h +++ b/clang/test/PCH/exprs.h @@ -47,6 +47,12 @@ typedef typeof(((struct S*)0)->x) member_ref_double; // BinaryOperator typedef typeof(i + Enumerator) add_result; +// CompoundAssignOperator +typedef typeof(i += Enumerator) addeq_result; + +// ConditionalOperator +typedef typeof(i? : d0) conditional_operator; + // CStyleCastExpr typedef typeof((void *)0) void_ptr; |

