From: Andrew Pinski Date: Fri, 1 Oct 2021 09:23:47 +0000 (+0000) Subject: Fix bb-slp-pr97709.c after computed goto change X-Git-Tag: basepoints/gcc-13~4274 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0abfa815a54f895d782a62d99160f5a349f68c7;p=thirdparty%2Fgcc.git Fix bb-slp-pr97709.c after computed goto change Looks like I tested the change for bb-slp-pr97709.c on an older tree which did not have the error message so I had missed one more place where the change was needed. Anyways committed after testing to make sure the testcase passes now. gcc/testsuite/ChangeLog: * gcc.dg/vect/bb-slp-pr97709.c: Fix for computed goto pointers. --- diff --git a/gcc/testsuite/gcc.dg/vect/bb-slp-pr97709.c b/gcc/testsuite/gcc.dg/vect/bb-slp-pr97709.c index d0f3d0512d94..56ec0f6bda77 100644 --- a/gcc/testsuite/gcc.dg/vect/bb-slp-pr97709.c +++ b/gcc/testsuite/gcc.dg/vect/bb-slp-pr97709.c @@ -17,7 +17,7 @@ g: d = 0; h: c = 1; - goto *a; + goto *(void*)(__INTPTR_TYPE__)a; i: { struct b b = {c, d};