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
5dff71ed
Commit
5dff71ed
authored
Oct 14, 1999
by
Jason Merrill
Committed by
Jason Merrill
Oct 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c (main): Don't complain about options for other languages.
From-SVN: r29987
parent
be929cff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/toplev.c
+6
-6
No files found.
gcc/ChangeLog
View file @
5dff71ed
Thu
Oct
14
13
:
54
:
25
1999
Jason
Merrill
<
jason
@yorick
.
cygnus
.
com
>
*
toplev
.
c
(
main
)
:
Don
'
t
complain
about
options
for
other
languages
.
Thu
Oct
14
10
:
51
:
49
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
m68k
.
md
(
zero_extendsidi2
)
:
Add
missing
output
reload
constraint
.
...
...
gcc/toplev.c
View file @
5dff71ed
...
...
@@ -5387,15 +5387,15 @@ main (argc, argv)
only be decoded in a language independent way if the were not
decoded in a langauge specific way, which is why 'lang_processed'
is passed in. */
indep_processed
=
independent_decode_option
(
argc
-
i
,
argv
+
i
,
lang_processed
);
indep_processed
=
independent_decode_option
(
argc
-
i
,
argv
+
i
,
lang_processed
);
if
(
lang_processed
||
indep_processed
)
i
+=
lang_processed
>
indep_processed
?
lang_processed
:
indep_processed
;
i
+=
(
lang_processed
>
indep_processed
?
lang_processed
:
indep_processed
);
else
{
error
(
"Invalid option `%s'"
,
argv
[
i
]);
i
++
;
}
/* This option applies to some other language; ignore it. *
i++;
}
/* Checker uses the frame pointer. */
...
...
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