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
51c0d897
Commit
51c0d897
authored
Sep 27, 1996
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_spec_1): Allow -A in %[Spec].
From-SVN: r12852
parent
8524774e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
gcc/gcc.c
+9
-5
No files found.
gcc/gcc.c
View file @
51c0d897
...
...
@@ -3585,6 +3585,8 @@ do_spec_1 (spec, inswitch, soft_matched_part)
every -D and at the end of each arg, */
while
(
1
)
{
int
flag
;
if
(
!
strncmp
(
y
,
"-D"
,
2
))
{
*
x
++
=
'-'
;
...
...
@@ -3592,16 +3594,18 @@ do_spec_1 (spec, inswitch, soft_matched_part)
*
x
++
=
'_'
;
*
x
++
=
'_'
;
y
+=
2
;
flag
=
1
;
continue
;
}
else
if
(
*
y
==
' '
||
*
y
==
0
)
else
if
(
flag
&&
(
*
y
==
' '
||
*
y
==
'\t'
||
*
y
==
'='
||
*
y
==
'}'
||
*
y
==
0
))
{
*
x
++
=
'_'
;
*
x
++
=
'_'
;
if
(
*
y
==
0
)
break
;
else
*
x
++
=
*
y
++
;
flag
=
0
;
}
if
(
*
y
==
0
)
break
;
else
*
x
++
=
*
y
++
;
}
...
...
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