Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
cd9dd3ee
Commit
cd9dd3ee
authored
Jul 15, 2004
by
Mike Stump
Committed by
Mike Stump
Jul 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/20020426-2.c: Improve type safety wrt unsignedness.
From-SVN: r84739
parent
951120ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/20020426-2.c
+3
-3
No files found.
gcc/testsuite/ChangeLog
View file @
cd9dd3ee
2004
-
07
-
14
Mike
Stump
<
mrs
@apple
.
com
>
*
gcc
.
dg
/
20020426
-
2
.
c
:
Improve
type
safety
wrt
unsignedness
.
2004
-
07
-
14
James
E
Wilson
<
wilson
@specifixinc
.
com
>
2004
-
07
-
14
James
E
Wilson
<
wilson
@specifixinc
.
com
>
PR
target
/
16325
PR
target
/
16325
...
...
gcc/testsuite/gcc.dg/20020426-2.c
View file @
cd9dd3ee
...
@@ -160,14 +160,14 @@ foo (unsigned int *b, unsigned int n, unsigned int s, const unsigned int *d,
...
@@ -160,14 +160,14 @@ foo (unsigned int *b, unsigned int n, unsigned int s, const unsigned int *d,
return
y
!=
0
&&
g
!=
1
?
(
-
5
)
:
0
;
return
y
!=
0
&&
g
!=
1
?
(
-
5
)
:
0
;
}
}
int
a
[
19
]
=
{
3
,
4
,
0
,
2
,
2
,
[
17
]
=
3
,
3
};
unsigned
int
a
[
19
]
=
{
3
,
4
,
0
,
2
,
2
,
[
17
]
=
3
,
3
};
int
d
[
19
];
unsigned
int
d
[
19
];
A
h
[
1440
];
A
h
[
1440
];
int
int
main
(
void
)
main
(
void
)
{
{
int
b
=
0
,
c
=
0
;
unsigned
int
b
=
0
,
c
=
0
;
A
*
e
=
0
;
A
*
e
=
0
;
foo
(
a
,
19
,
19
,
0
,
0
,
&
e
,
&
b
,
h
,
&
c
,
d
);
foo
(
a
,
19
,
19
,
0
,
0
,
&
e
,
&
b
,
h
,
&
c
,
d
);
exit
(
0
);
exit
(
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment