summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-14 23:32:43 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-14 23:32:43 +0000
commitf0b575f79db133a7bcc373fb5480b9ab51514810 (patch)
tree4dd83f782404e2350d8dc9391c528ef2814f11b2 /clang/test
parent9351c02befc53ac5ad60337b0bc3714d7bd4f3d6 (diff)
downloadbcm5719-llvm-f0b575f79db133a7bcc373fb5480b9ab51514810.tar.gz
bcm5719-llvm-f0b575f79db133a7bcc373fb5480b9ab51514810.zip
Add PCH support for ImplicitCastExprs. This is the first expression
kind PCH handles that has an expression as an operand, so most of this work is in the infrastructure to rebuild expression trees from the serialized representation. We now store expressions in post-order (e.g., Reverse Polish Notation), so that we can easily rebuild the appropriate expression tree. llvm-svn: 69101
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/PCH/enum.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/PCH/enum.h b/clang/test/PCH/enum.h
index c94e314eb06..7dc4e631d6c 100644
--- a/clang/test/PCH/enum.h
+++ b/clang/test/PCH/enum.h
@@ -13,4 +13,4 @@ enum Shape {
Circle
};
-enum Shape aRoundShape;// FIXME: = Circle;
+enum Shape aRoundShape = Circle;
OpenPOWER on IntegriCloud