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
b865c41d
Commit
b865c41d
authored
Oct 22, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow a stab line number of 0, since G++ generates it; check for >= 2**20.
From-SVN: r2561
parent
9a292126
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
gcc/mips-tfile.c
+7
-1
No files found.
gcc/mips-tfile.c
View file @
b865c41d
...
...
@@ -3678,12 +3678,18 @@ parse_stabs_common (string_start, string_end, rest)
code
=
strtol
(
p
+
3
,
&
p
,
0
);
ch
=
*++
p
;
if
(
code
<=
0
||
p
[
-
1
]
!=
','
||
isdigit
(
ch
)
||
!
IS_ASM_IDENT
(
ch
))
if
(
p
[
-
1
]
!=
','
||
isdigit
(
ch
)
||
!
IS_ASM_IDENT
(
ch
))
{
error
(
"Illegal line number .stabs/.stabn directive"
);
return
;
}
if
(
code
<
0
||
code
>=
0x100000
)
{
error
(
"Line number for .stabs/.stabn directive cannot fit in index field (20 bits)"
);
return
;
}
shash_ptr
=
hash_string
(
p
,
strlen
(
p
)
-
1
,
&
orig_str_hash
[
0
],
...
...
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