mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 10:06:07 +00:00

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
17 lines
164 B
C
17 lines
164 B
C
/* Used in enum.c test */
|
|
|
|
enum Color {
|
|
Red,
|
|
Green,
|
|
Blue
|
|
};
|
|
|
|
enum Shape {
|
|
Square,
|
|
Triangle = 17,
|
|
Rhombus,
|
|
Circle
|
|
};
|
|
|
|
enum Shape aRoundShape = Circle;
|