udlit-raw-op.C: Don't use CRLF endings.

* g++.dg/cpp0x/udlit-raw-op.C: Don't use CRLF endings.
	* gcc.dg/tree-ssa/vrp59.c: Likewise.
	* gcc.dg/tree-ssa/vrp60.c: Likewise.

	* gcc.dg/dll-8.c: Remove execute permissions.
	* g++.dg/ext/dllexport5.C: Likewise.

From-SVN: r186264
This commit is contained in:
Mike Stump 2012-04-10 07:03:19 +00:00 committed by Mike Stump
parent 4bba36033b
commit d153ad6db1
6 changed files with 96 additions and 87 deletions

View File

@ -1,3 +1,12 @@
2012-04-09 Mike Stump <mikestump@comcast.net>
* g++.dg/cpp0x/udlit-raw-op.C: Don't use CRLF endings.
* gcc.dg/tree-ssa/vrp59.c: Likewise.
* gcc.dg/tree-ssa/vrp60.c: Likewise.
* gcc.dg/dll-8.c: Remove execute permissions.
* g++.dg/ext/dllexport5.C: Likewise.
2012-04-09 Eric Botcazou <ebotcazou@adacore.com>
* lib/target-supports.exp (check_effective_target_sparc_v9): New.

View File

@ -1,21 +1,21 @@
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <cassert>
#include <cstring>
int
operator"" _raw_umber(const char * str)
{
return strlen(str);
}
int
main()
{
int i = 0123012301230123012301230123012301230123012301230123012301230123_raw_umber;
assert( i == 64 );
int j = 90123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789_raw_umber;
assert( j == 101 );
}
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <cassert>
#include <cstring>
int
operator"" _raw_umber(const char * str)
{
return strlen(str);
}
int
main()
{
int i = 0123012301230123012301230123012301230123012301230123012301230123_raw_umber;
assert( i == 64 );
int j = 90123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789_raw_umber;
assert( j == 101 );
}

0
gcc/testsuite/g++.dg/ext/dllexport5.C Executable file → Normal file
View File

0
gcc/testsuite/gcc.dg/dll-8.c Executable file → Normal file
View File

View File

@ -1,35 +1,35 @@
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp -fdump-tree-vrp1" } */
int f(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 3;
x = x & 3;
}
return x;
}
int g(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 2;
x = x & 3;
}
return x;
}
int h(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 1;
x = x & 3;
}
return x;
}
/* { dg-final { scan-tree-dump-not " & 3;" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp -fdump-tree-vrp1" } */
int f(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 3;
x = x & 3;
}
return x;
}
int g(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 2;
x = x & 3;
}
return x;
}
int h(int x)
{
if (x >= 0 && x <= 3)
{
x = x ^ 1;
x = x & 3;
}
return x;
}
/* { dg-final { scan-tree-dump-not " & 3;" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */

View File

@ -1,31 +1,31 @@
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp -fno-tree-dominator-opts -fdump-tree-vrp1" } */
int foo (int x, int b)
{
int cst;
if (b)
cst = -__INT_MAX__ - 1;
else
cst = -__INT_MAX__;
x = x | cst;
if (x >= 0)
return 12345;
return x;
}
int bar (int x, int b)
{
int cst;
if (b)
cst = __INT_MAX__;
else
cst = __INT_MAX__ - 1;
x = x & cst;
if (x < 0)
return 12345;
return x;
}
/* { dg-final { scan-tree-dump-not "12345" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-ccp -fno-tree-dominator-opts -fdump-tree-vrp1" } */
int foo (int x, int b)
{
int cst;
if (b)
cst = -__INT_MAX__ - 1;
else
cst = -__INT_MAX__;
x = x | cst;
if (x >= 0)
return 12345;
return x;
}
int bar (int x, int b)
{
int cst;
if (b)
cst = __INT_MAX__;
else
cst = __INT_MAX__ - 1;
x = x & cst;
if (x < 0)
return 12345;
return x;
}
/* { dg-final { scan-tree-dump-not "12345" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */