Author: Nikita Popov Date: 2026-09-23T09:49:30+02:00 New Revision: 75225e04996471098bacf6888d33ab94cf7595d1
URL: https://github.com/llvm/llvm-project/commit/75225e04996471098bacf6888d33ab94cf7595d1 DIFF: https://github.com/llvm/llvm-project/commit/75225e04996471098bacf6888d33ab94cf7595d1.diff LOG: [Clang] Fix test with 32-bit triple (#225624) Added: Modified: clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp Removed: ################################################################################ diff --git a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp index cfd7220621416..32447d74d0723 100644 --- a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp +++ b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp @@ -24,4 +24,4 @@ struct A { virtual void a(); }; A x(A& y) { return y; } // CHECK: define linkonce_odr {{.*}} @_ZN1AC1ERKS_(ptr {{.*}}%this, ptr noundef nonnull align {{[0-9]+}} dereferenceable({{[0-9]+}}) %0) unnamed_addr -// CHECK: store ptr getelementptr inbounds inrange(-{{[0-9]+}}, {{[0-9]+}}) (i8, ptr @_ZTV1A, i64 16) +// CHECK: store ptr getelementptr inbounds inrange(-{{[0-9]+}}, {{[0-9]+}}) (i8, ptr @_ZTV1A, {{i64 16|i32 8}}) _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
