Commit 5c3489a0 by Jakub Jelinek

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.
parent 8f22ba6d
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
......
/* { 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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment