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
9f3c45fd
Commit
9f3c45fd
authored
Dec 07, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(handle_braces): Rework last change.
From-SVN: r13241
parent
00523ef2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
15 deletions
+8
-15
gcc/gcc.c
+8
-15
No files found.
gcc/gcc.c
View file @
9f3c45fd
...
...
@@ -362,7 +362,7 @@ or with constant text in a single argument.
arguments. CC considers `-o foo' as being one switch whose
name starts with `o'. %{o*} would substitute this text,
including the space; thus, two arguments would be generated.
%{
S*^
} likewise, but don't put a blank between a switch and any args.
%{
^S*
} likewise, but don't put a blank between a switch and any args.
%{S*:X} substitutes X if one or more switches whose names start with -S are
specified to CC. Note that the tail part of the -S option
(i.e. the part matched by the `*') will be substituted for each
...
...
@@ -3749,6 +3749,11 @@ handle_braces (p)
int
pipe_p
=
0
;
int
negate
=
0
;
int
suffix
=
0
;
int
include_blanks
=
1
;
if
(
*
p
==
'^'
)
/* A '^' after the open-brace means to not give blanks before args. */
include_blanks
=
0
,
++
p
;
if
(
*
p
==
'|'
)
/* A `|' after the open-brace means,
...
...
@@ -3814,19 +3819,7 @@ handle_braces (p)
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
,
1
);
}
else
if
(
p
[
-
1
]
==
'*'
&&
p
[
0
]
==
'^'
&&
p
[
1
]
==
'}'
)
{
/* Substitute all matching switches as separate args, but don't
write a blank between the first part and any args, even if they
were present. */
register
int
i
;
--
p
;
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
,
0
);
give_switch
(
i
,
0
,
include_blanks
);
}
else
{
...
...
@@ -3909,7 +3902,7 @@ handle_braces (p)
{
if
(
*
p
==
'}'
)
{
give_switch
(
i
,
0
,
1
);
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