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
29337351
Commit
29337351
authored
Aug 13, 2002
by
Neil Booth
Committed by
Neil Booth
Aug 13, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opts.c (c_common_init_options): Extra braces needed.
From-SVN: r56262
parent
8202c8c4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+4
-0
gcc/c-opts.c
+2
-0
No files found.
gcc/ChangeLog
View file @
29337351
2002-08-13 Neil Booth <neil@daikokuya.co.uk>
* c-opts.c (c_common_init_options): Extra braces needed.
Tue Aug 13 17:40:25 2002 J"orn Rennecke <joern.rennecke@superh.com>
* sh.c (sh_init_builtins): Add PARAMS to declaration.
...
...
gcc/c-opts.c
View file @
29337351
...
...
@@ -496,12 +496,14 @@ c_common_init_options (lang)
qsort
(
cl_options
,
N_OPTS
,
sizeof
(
struct
cl_option
),
opt_comp
);
#endif
#if ENABLE_CHECKING
{
size_t
i
;
for
(
i
=
1
;
i
<
N_OPTS
;
i
++
)
if
(
strcmp
(
cl_options
[
i
-
1
].
opt_text
,
cl_options
[
i
].
opt_text
)
>=
0
)
error
(
"options array incorrectly sorted: %s is before %s"
,
cl_options
[
i
-
1
].
opt_text
,
cl_options
[
i
].
opt_text
);
}
#endif
c_language
=
lang
;
...
...
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