Commit 0d797e0f by H.J. Lu Committed by H.J. Lu

Use long long for uint64_t/int64_t

	* gcc.target/i386/pr45685.c (uint64_t): Replace long with long
	long.
	(int64_t): Likewise.

From-SVN: r221255
parent 2e58ed30
2015-03-07 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/pr45685.c (uint64_t): Replace long with long
long.
(int64_t): Likewise.
2015-03-07 Marek Polacek <polacek@redhat.com> 2015-03-07 Marek Polacek <polacek@redhat.com>
Martin Uecker <uecker@eecs.berkeley.edu> Martin Uecker <uecker@eecs.berkeley.edu>
......
/* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-do compile { target { ! { ia32 } } } } */
/* { dg-options "-O3" } */ /* { dg-options "-O3" } */
typedef unsigned long int uint64_t; typedef unsigned long long int uint64_t;
typedef long int int64_t; typedef long long int int64_t;
int summation_helper_1(int64_t* products, uint64_t count) int summation_helper_1(int64_t* products, uint64_t count)
{ {
int s = 0; int s = 0;
......
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