From fd2f2f687513946a689156304fa932e36befcfdb Mon Sep 17 00:00:00 2001 From: Premanand M Rao Date: Fri, 21 Nov 2025 10:38:27 -0800 Subject: [PATCH] Fix test fail after pulldown Most likely after commit bb1b82af395fe4a717c9b10948312e260b5ca666 diagnostics show entities nested inside anonymous unions when previously this nesting information was skipped over. --- sycl/test/esimd/regression/simd_wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/test/esimd/regression/simd_wrapper.cpp b/sycl/test/esimd/regression/simd_wrapper.cpp index a1e39f7f86ea5..4357bc20a5e70 100644 --- a/sycl/test/esimd/regression/simd_wrapper.cpp +++ b/sycl/test/esimd/regression/simd_wrapper.cpp @@ -13,7 +13,7 @@ using namespace sycl::ext::intel::esimd; struct SimdWrapper { union { - // expected-note-re@+1 {{copy constructor of 'SimdWrapper' is implicitly deleted because variant field 'SimdWrapper::(anonymous struct at {{.*}})' has a non-trivial copy constructor}} + // expected-note-re@+1 {{copy constructor of 'SimdWrapper' is implicitly deleted because variant field 'SimdWrapper::(anonymous union)::(anonymous struct at {{.*}})' has a non-trivial copy constructor}} struct { simd v1; };