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
81a6489e
Commit
81a6489e
authored
Jun 28, 2003
by
Ulrich Weigand
Committed by
Ulrich Weigand
Jun 28, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/execute/multi-ix.c: Fix off-by-one bugs.
From-SVN: r68652
parent
cef1ccd6
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.c-torture/execute/multi-ix.c
+3
-3
No files found.
gcc/testsuite/ChangeLog
View file @
81a6489e
2003-06-28 Ulrich Weigand <uweigand@de.ibm.com>
* gcc.c-torture/execute/multi-ix.c: Fix off-by-one bugs.
2003-06-28 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.robertl/eb133.C: Set expected line number.
...
...
gcc/testsuite/gcc.c-torture/execute/multi-ix.c
View file @
81a6489e
...
...
@@ -145,7 +145,7 @@ void s(int n, ...)
va_list
list
;
va_start
(
list
,
n
);
while
(
--
n
)
while
(
n
--
)
{
int
*
a
=
va_arg
(
list
,
int
*
);
a
[
0
]
=
n
;
...
...
@@ -158,7 +158,7 @@ void z(int n, ...)
va_list
list
;
va_start
(
list
,
n
);
while
(
--
n
)
while
(
n
--
)
{
int
*
a
=
va_arg
(
list
,
int
*
);
bzero
(
a
,
sizeof
(
l
));
...
...
@@ -171,7 +171,7 @@ void c(int n, ...)
va_list
list
;
va_start
(
list
,
n
);
while
(
--
n
)
while
(
n
--
)
{
int
*
a
=
va_arg
(
list
,
int
*
);
if
(
a
[
n
]
!=
n
)
...
...
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