diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-04-16 02:33:48 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-04-16 02:33:48 +0000 |
| commit | 4c5cd335278c4fca64c15cf7bb465bb048eb8b1c (patch) | |
| tree | b354878a3a22bc0ee0686d051154231bb9b22e99 /clang/test/PCH/exprs.h | |
| parent | 653dee08849edc5f4b5575a670d3d0ed2e077f6f (diff) | |
| download | bcm5719-llvm-4c5cd335278c4fca64c15cf7bb465bb048eb8b1c.tar.gz bcm5719-llvm-4c5cd335278c4fca64c15cf7bb465bb048eb8b1c.zip | |
PCH support for CompoundLiteralExpr. This is the last C expression
that does not require PCH support for statements. Only AddrLabelExpr,
StmtExpr, and BlockExpr remain (for C).
llvm-svn: 69255
Diffstat (limited to 'clang/test/PCH/exprs.h')
| -rw-r--r-- | clang/test/PCH/exprs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/PCH/exprs.h b/clang/test/PCH/exprs.h index 43fd89595e9..7012422aad3 100644 --- a/clang/test/PCH/exprs.h +++ b/clang/test/PCH/exprs.h @@ -56,6 +56,9 @@ typedef typeof(i? : d0) conditional_operator; // CStyleCastExpr typedef typeof((void *)0) void_ptr; +// CompoundLiteral +typedef typeof((struct S){.x = 3.5}) compound_literal; + // ExtVectorElementExpr typedef __attribute__(( ext_vector_type(2) )) double double2; extern double2 vec2, vec2b; |

