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
14dd2402
Commit
14dd2402
authored
Dec 13, 2000
by
Tom Tromey
Committed by
Tom Tromey
Dec 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (handle_braces): Handle %{<S*} spec correctly.
From-SVN: r38238
parent
3f27e3f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+4
-0
gcc/gcc.c
+9
-1
No files found.
gcc/ChangeLog
View file @
14dd2402
2000-12-13 Tom Tromey <tromey@redhat.com>
* gcc.c (handle_braces): Handle %{<S*} spec correctly.
2000-12-13 Alexandre Oliva <aoliva@redhat.com>
* function.c (assign_parms): Optimize incoming PARALLELs into
...
...
gcc/gcc.c
View file @
14dd2402
...
...
@@ -4820,7 +4820,15 @@ next_member:
for
(
i
=
0
;
i
<
n_switches
;
i
++
)
if
(
!
strncmp
(
switches
[
i
].
part1
,
filter
,
p
-
filter
)
&&
check_live_switch
(
i
,
p
-
filter
))
give_switch
(
i
,
0
,
include_blanks
);
{
if
(
elide_switch
)
{
switches
[
i
].
live_cond
=
SWITCH_IGNORE
;
switches
[
i
].
validated
=
1
;
}
else
give_switch
(
i
,
0
,
include_blanks
);
}
}
else
{
...
...
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