[clang] [Clang] [Sema] Support matrix types in pseudo-destructor expressions (PR #117483)
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Wed Dec 4 07:02:00 PST 2024
================
@@ -368,3 +368,36 @@ void test_use_matrix_2() {
selector<2> r5 = use_matrix_3(m1);
}
+
+// CHECK-LABEL: define void @_Z22test_pseudo_destructorv()
+// CHECK-NEXT: entry:
+// CHECK-NEXT: %a = alloca [25 x double], align 8
----------------
erichkeane wrote:
probably want to use matches/etc for the local variables here, they aren't reliable (the %a, %b, %0, and %1). Though, I see the rest of the test doesn't, so everyone will be burned if someone runs them with the 'strip names' flag :D
https://github.com/llvm/llvm-project/pull/117483
More information about the cfe-commits
mailing list