Commit ceaba33e by Mike Stump Committed by Mike Stump

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.

From-SVN: r186259
parent d0779896
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/dll-8.c: Remove execute permissions.
* g++.dg/ext/dllexport5.C: Likewise.
......
// { 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 );
}
/* { 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" } } */
/* { 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" } } */
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