diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-11 21:15:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-11 21:15:38 +0000 |
commit | c523d8e88c94113717f12381cd44c2a3699e9d10 (patch) | |
tree | cbc3d2482d5af30206b31c3c264036a6a6825b36 /clang/test/PCH/variables.c | |
parent | 28d198177f0007d93add0189451279f957c54d7d (diff) | |
download | bcm5719-llvm-c523d8e88c94113717f12381cd44c2a3699e9d10.tar.gz bcm5719-llvm-c523d8e88c94113717f12381cd44c2a3699e9d10.zip |
now that we have an identifier table in the PCH file, finish hooking up
macro deserialization. We now correctly install II's in tokens, handle
function-like macros, etc.
llvm-svn: 68882
Diffstat (limited to 'clang/test/PCH/variables.c')
-rw-r--r-- | clang/test/PCH/variables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/PCH/variables.c b/clang/test/PCH/variables.c index 4001469f6fc..749b7b6741b 100644 --- a/clang/test/PCH/variables.c +++ b/clang/test/PCH/variables.c @@ -15,3 +15,4 @@ double z; // expected-error{{redefinition}} int Q = A_MACRO_IN_THE_PCH; +int R = FUNCLIKE_MACRO(A_MACRO_, IN_THE_PCH);
\ No newline at end of file |