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
a3a0177e
Commit
a3a0177e
authored
Dec 18, 2002
by
Jason Merrill
Committed by
Jason Merrill
Dec 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (do_spec_1) ['W']: End any pending argument from the braces.
From-SVN: r60235
parent
f32ac70d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ChangeLog
+2
-0
gcc/gcc.c
+12
-0
No files found.
gcc/ChangeLog
View file @
a3a0177e
2002
-
12
-
17
Jason
Merrill
<
jason
@redhat
.
com
>
2002
-
12
-
17
Jason
Merrill
<
jason
@redhat
.
com
>
*
gcc
.
c
(
do_spec_1
)
[
'W'
]
:
End
any
pending
argument
from
the
braces
.
*
calls
.
c
(
expand_call
)
:
Don
'
t
try
to
be
clever
about
expanding
*
calls
.
c
(
expand_call
)
:
Don
'
t
try
to
be
clever
about
expanding
the
return
slot
address
.
the
return
slot
address
.
...
...
gcc/gcc.c
View file @
a3a0177e
...
@@ -4778,6 +4778,18 @@ do_spec_1 (spec, inswitch, soft_matched_part)
...
@@ -4778,6 +4778,18 @@ do_spec_1 (spec, inswitch, soft_matched_part)
p
=
handle_braces
(
p
+
1
);
p
=
handle_braces
(
p
+
1
);
if
(
p
==
0
)
if
(
p
==
0
)
return
-
1
;
return
-
1
;
/* End any pending argument. */
if
(
arg_going
)
{
obstack_1grow
(
&
obstack
,
0
);
string
=
obstack_finish
(
&
obstack
);
if
(
this_is_library_file
)
string
=
find_file
(
string
);
store_arg
(
string
,
delete_this_arg
,
this_is_output_file
);
if
(
this_is_output_file
)
outfiles
[
input_file_number
]
=
string
;
arg_going
=
0
;
}
/* If any args were output, mark the last one for deletion
/* If any args were output, mark the last one for deletion
on failure. */
on failure. */
if
(
argbuf_index
!=
cur_index
)
if
(
argbuf_index
!=
cur_index
)
...
...
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