diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0a9c561c1aeb..d89338032a96 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-03-07 H.J. Lu + + * gcc.target/i386/pr45685.c (uint64_t): Replace long with long + long. + (int64_t): Likewise. + 2015-03-07 Marek Polacek Martin Uecker diff --git a/gcc/testsuite/gcc.target/i386/pr45685.c b/gcc/testsuite/gcc.target/i386/pr45685.c index 7f50bb332f2c..57c6501e2d97 100644 --- a/gcc/testsuite/gcc.target/i386/pr45685.c +++ b/gcc/testsuite/gcc.target/i386/pr45685.c @@ -1,8 +1,8 @@ /* { dg-do compile { target { ! { ia32 } } } } */ /* { dg-options "-O3" } */ -typedef unsigned long int uint64_t; -typedef long int int64_t; +typedef unsigned long long int uint64_t; +typedef long long int int64_t; int summation_helper_1(int64_t* products, uint64_t count) { int s = 0;