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
bfa1514a
Commit
bfa1514a
authored
Feb 14, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Move unused arg ++i out of call to printf.
From-SVN: r6557
parent
1e83f71a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/bi-opcode.c
+5
-2
No files found.
gcc/bi-opcode.c
View file @
bfa1514a
/* Utility to generate opcode list from bytecode definition.
Copyright (C) 1993 Free Software Foundation, Inc.
Copyright (C) 1993
, 1994
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -41,7 +41,10 @@ enum bytecode_opcode\n{");
i
=
0
;
for
(
d
=
defs
;
d
;
d
=
d
->
next
)
for
(
v
=
d
->
variations
;
v
;
v
=
v
->
next
)
printf
(
" %s%s,
\n
"
,
d
->
basename
,
v
->
name
,
i
++
);
{
printf
(
" %s%s,
\n
"
,
d
->
basename
,
v
->
name
);
++
i
;
}
puts
(
" LAST_AND_UNUSED_OPCODE
\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