Commit 906e7712 by Jakub Jelinek Committed by Jakub Jelinek

ssa-dse-2.C (size_t): Typedef to __SIZE_TYPE__ rather than long unsigned int.

	* g++.dg/tree-ssa/ssa-dse-2.C (size_t): Typedef to __SIZE_TYPE__
	rather than long unsigned int.
	* g++.dg/tree-ssa/ssa-dom.C: Likewise.

From-SVN: r244527
parent d190d5c0
2017-01-17 Jakub Jelinek <jakub@redhat.com>
* g++.dg/tree-ssa/ssa-dse-2.C (size_t): Typedef to __SIZE_TYPE__
rather than long unsigned int.
* g++.dg/tree-ssa/ssa-dom.C: Likewise.
2017-01-17 Richard Biener <rguenther@suse.de>
PR tree-optimization/71433
......
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dom2" } */
typedef long unsigned int size_t;
typedef __SIZE_TYPE__ size_t;
extern void abort (void) __attribute__ ((__noreturn__));
union tree_node;
typedef union tree_node *tree;
......
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dse2-details" } */
typedef long unsigned int size_t;
typedef __SIZE_TYPE__ size_t;
extern "C"
{
extern void *memmove (void *__dest, const void *__src, size_t __n) throw ()
......
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