diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-04-14 21:18:50 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-04-14 21:18:50 +0000 |
| commit | feb84b0074d249930fe5efa39e1bf700810bb76c (patch) | |
| tree | 36f59958ef90b80b9ea46c3654369759935f6b14 /clang/test/PCH/struct.h | |
| parent | a723ba97db0e47f024118fa9f132d307dcfc75d4 (diff) | |
| download | bcm5719-llvm-feb84b0074d249930fe5efa39e1bf700810bb76c.tar.gz bcm5719-llvm-feb84b0074d249930fe5efa39e1bf700810bb76c.zip | |
PCH support for a few very, very simple kinds of expressions. Hook up
expression (de-)serialization for VLAs, variable initializers,
enum constant initializers, and bitfield widths.
llvm-svn: 69075
Diffstat (limited to 'clang/test/PCH/struct.h')
| -rw-r--r-- | clang/test/PCH/struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/PCH/struct.h b/clang/test/PCH/struct.h index 6c256221fa0..2ffdd4aea58 100644 --- a/clang/test/PCH/struct.h +++ b/clang/test/PCH/struct.h @@ -13,7 +13,7 @@ struct Fun; struct Fun *fun; struct Fun { - int is_ptr; + int is_ptr : 1; union { void *ptr; |

