testsuite: fix spaceship-narrowing1.C

I made sure that Wnarrowing22.C works fine on ILP32, but apparently
I didn't verify that spaceship-narrowing1.C works there as well.  :(

gcc/testsuite/ChangeLog:

	* g++.dg/cpp2a/spaceship-narrowing1.C: Use __INT64_TYPE__.
This commit is contained in:
Marek Polacek 2024-07-01 18:12:31 -04:00
parent c847dcf944
commit cb39f7df8d

View file

@ -16,7 +16,7 @@ constexpr strong_ordering strong_ordering::greater = 1;
}
struct A {
long i : 48;
__INT64_TYPE__ i : 48;
auto operator <=> (const A&) const = default;
};