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
110de73f
Commit
110de73f
authored
Jul 23, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1674
parent
0d53ee39
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
gcc/mips-tfile.c
+12
-7
No files found.
gcc/mips-tfile.c
View file @
110de73f
...
...
@@ -2912,14 +2912,19 @@ parse_def (name_start)
/* Search for the end of the name being defined. */
for
(
name_end_p1
=
name_start
;
(
ch
=
*
name_end_p1
)
!=
';'
;
name_end_p1
++
)
/* Allow spaces and such in names for G++ templates, which produce stabs
that look like:
#.def SMANIP<long unsigned int>; .scl 10; .type 0x8; .size 8; .endef */
for
(
name_end_p1
=
name_start
;
(
ch
=
*
name_end_p1
)
!=
';'
||
ch
==
'\0'
;
name_end_p1
++
)
;
if
(
ch
==
'\0'
)
{
if
(
ch
==
'\0'
||
isspace
(
ch
))
{
error_line
=
__LINE__
;
saber_stop
();
goto
bomb_out
;
}
error_line
=
__LINE__
;
saber_stop
();
goto
bomb_out
;
}
/* Parse the remaining subdirectives now. */
...
...
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