From: Jakub Jelinek Date: Thu, 20 Apr 2023 07:43:04 +0000 (+0200) Subject: testsuite: Fix up g++.dg/ext/int128-8.C testcase [PR109560] X-Git-Tag: releases/gcc-12.3.0~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3907147aa9bf51ae2bc5d8ddd5bf8d6ddfdf4bf5;p=thirdparty%2Fgcc.git testsuite: Fix up g++.dg/ext/int128-8.C testcase [PR109560] The testcase needs to be restricted to int128 effective targets, it expectedly fails on i386 and other 32-bit targets. 2023-04-20 Jakub Jelinek PR c++/108099 PR testsuite/109560 * g++.dg/ext/int128-8.C: Require int128 effective target. (cherry picked from commit bd4a1a547242a924663712ac7a13799433cdf476) --- diff --git a/gcc/testsuite/g++.dg/ext/int128-8.C b/gcc/testsuite/g++.dg/ext/int128-8.C index 14bbc49f5c35..7e909d50873a 100644 --- a/gcc/testsuite/g++.dg/ext/int128-8.C +++ b/gcc/testsuite/g++.dg/ext/int128-8.C @@ -1,5 +1,5 @@ // PR c++/108099 -// { dg-do compile { target c++11 } } +// { dg-do compile { target { c++11 && int128 } } } // { dg-options "" } using u128 = unsigned __int128_t;