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
c903545b
Commit
c903545b
authored
Oct 15, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow spaces in tag names.
From-SVN: r2479
parent
907b7179
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
gcc/mips-tfile.c
+14
-10
No files found.
gcc/mips-tfile.c
View file @
c903545b
...
...
@@ -2926,7 +2926,7 @@ parse_def (name_start)
#.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
++
)
for
(
name_end_p1
=
name_start
;
(
ch
=
*
name_end_p1
)
!=
';'
&&
ch
!
=
'\0'
;
name_end_p1
++
)
;
if
(
ch
==
'\0'
)
...
...
@@ -2992,16 +2992,20 @@ parse_def (name_start)
}
if
(
!
arg_was_number
)
for
(
arg_end_p1
=
arg_start
+
1
;
(
ch
=
*
arg_end_p1
)
!=
';'
;
arg_end_p1
++
)
{
if
(
ch
==
'\0'
||
isspace
(
ch
))
{
error_line
=
__LINE__
;
saber_stop
();
goto
bomb_out
;
}
}
{
/* Allow spaces and such in names for G++ templates. */
for
(
arg_end_p1
=
arg_start
+
1
;
(
ch
=
*
arg_end_p1
)
!=
';'
&&
ch
!=
'\0'
;
arg_end_p1
++
)
;
if
(
ch
==
'\0'
)
{
error_line
=
__LINE__
;
saber_stop
();
goto
bomb_out
;
}
}
/* Classify the directives now. */
len
=
dir_end_p1
-
dir_start
;
...
...
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