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/external-defs.c | |
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/external-defs.c')
-rw-r--r-- | clang/test/PCH/external-defs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/PCH/external-defs.c b/clang/test/PCH/external-defs.c index fd14c4fa8b3..5af21af517a 100644 --- a/clang/test/PCH/external-defs.c +++ b/clang/test/PCH/external-defs.c @@ -3,8 +3,7 @@ // RUN: clang-cc -triple x86_64-apple-darwin9 -include-pch %t.pch -emit-llvm -o %t %s && // RUN: grep "@x = common global i32 0" %t | count 1 && -// FIXME below: should be i32 17, but we don't serialize y's value yet -// RUN: grep "@y = common global i32 0" %t | count 1 && +// RUN: grep "@y = global i32 17" %t | count 1 && // RUN: grep "@z" %t | count 0 && // RUN: grep "@x2 = global i32 19" %t | count 1 && |