aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-03-11 19:21:19 +0000
committerKazu Hirata <kazu@cs.umass.edu>2004-03-11 19:21:19 +0000
commit2a49d9bd53d6d6e5a72d18c6640faa8d5168edc7 (patch)
tree9250733dcfe849a38b0733337442cc7c7c5fffd4 /gcc/testsuite/gcc.dg
parent3c66591005049818d41d716bfcf6a8bf6e64df95 (diff)
* gcc.dg/tree-ssa/20040305-1.c: Change a constant to fit in a
16-bit int. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/tree-ssa-20020619-branch@79340 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg')
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/20040305-1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/20040305-1.c b/gcc/testsuite/gcc.dg/tree-ssa/20040305-1.c
index 74c56c0daa7..2d098d50e1d 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/20040305-1.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/20040305-1.c
@@ -6,7 +6,7 @@ int afred[1];
void foo(int edx, int eax)
{
- if (eax == 65535)
+ if (eax == 100)
{
if (edx == 1)
{
@@ -14,7 +14,7 @@ void foo(int edx, int eax)
abarney[1] = 6;
}
}
- if (eax == 65535)
+ if (eax == 100)
{
if (-- edx == 0)
afred[0] = 2;