[llvm] [TableGen] Add `!instances` operator to get defined records (PR #129680)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 03:19:37 PDT 2025
================
@@ -0,0 +1,60 @@
+// RUN: llvm-tblgen %s | FileCheck %s
+// RUN: not llvm-tblgen -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
+// RUN: not llvm-tblgen -DERROR2 %s 2>&1 | FileCheck --check-prefix=ERROR2 %s
+// RUN: not llvm-tblgen -DERROR3 %s 2>&1 | FileCheck --check-prefix=ERROR3 %s
+// XFAIL: vg_leak
+
+class A;
+def a0 : A;
+def a1 : A;
+
+class B : A;
+def b0 : B;
+def b1 : B;
+
----------------
wangpc-pp wrote:
I added more tests. The visibility is at the point where the class record is instantiated.
https://github.com/llvm/llvm-project/pull/129680
More information about the llvm-commits
mailing list