testsuite: Fix up g++.dg/torture/pr92152.C test for ilp32 targets
2020-02-28 Jakub Jelinek <jakub@redhat.com> PR middle-end/92152 * g++.dg/torture/pr92152.C (size_t): Use decltype (sizeof (0)) instead of hardcoding unsigned long. (uint64_t): Use unsigned long long instead of unsigned long.
This commit is contained in:
parent
8f22ba6d69
commit
5c3489a083
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2020-02-28 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/92152
|
||||
* g++.dg/torture/pr92152.C (size_t): Use decltype (sizeof (0)) instead
|
||||
of hardcoding unsigned long.
|
||||
(uint64_t): Use unsigned long long instead of unsigned long.
|
||||
|
||||
2020-02-27 Michael Meissner <meissner@linux.ibm.com>
|
||||
|
||||
PR target/93932
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* { dg-do run } */
|
||||
using size_t = unsigned long;
|
||||
using uint64_t = unsigned long;
|
||||
using size_t = decltype (sizeof (0));
|
||||
using uint64_t = unsigned long long;
|
||||
|
||||
namespace HPHP {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue