[clang] [CIR] Add support for derived class declarations (PR #142823)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 4 14:34:37 PDT 2025
================
@@ -32,3 +38,16 @@ CompleteC cc;
// CIR: cir.global external @cc = #cir.zero : !rec_CompleteC
// LLVM: @cc = global %class.CompleteC zeroinitializer
// OGCG: @cc = global %class.CompleteC zeroinitializer
+
+class Base {
+public:
+ int a;
+};
+
+class Derived : public Base {
+public:
+ int b;
+};
+
+int use(Derived *d) { return d->b; }
----------------
andykaylor wrote:
We can't handle this yet because it requires an implicit DerivedToBase cast, which will be in an upcoming patch.
https://github.com/llvm/llvm-project/pull/142823
More information about the cfe-commits
mailing list