summaryrefslogtreecommitdiff
path: root/clang/test/CIR/CodeGen/enum.cpp
AgeCommit message (Collapse)Author
2025-07-10[CIR] Add handlers for 'using enum' and namespace alias (#148011)Andy Kaylor
These decl types don't require any code generation, though when debug info is implemented, we will need to add handling for that. Until then, we just need to have a handler so they don't generate an NYI error.
2025-06-09[CIR] Add support for using enum constants (#143214)Andy Kaylor
Although support for declaring enums and using values whose type was an enum was previously upstreamed, we didn't have support for referencing the constant values declared in the enum. This change adds that support.