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:
parent
c847dcf944
commit
cb39f7df8d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue