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
c486ed79
Commit
c486ed79
authored
Sep 19, 1996
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(demangle_template): Fix handling of address args.
(gnu_special): Handle type_info stuff. From-SVN: r12746
parent
777e434c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
1 deletions
+25
-1
gcc/cplus-dem.c
+25
-1
No files found.
gcc/cplus-dem.c
View file @
c486ed79
...
...
@@ -1055,7 +1055,8 @@ demangle_template (work, mangled, tname, trawname)
}
else
if
(
is_pointer
)
{
if
(
!
get_count
(
mangled
,
&
symbol_len
))
symbol_len
=
consume_count
(
mangled
);
if
(
symbol_len
==
0
)
{
success
=
0
;
break
;
...
...
@@ -1596,6 +1597,29 @@ gnu_special (work, mangled, declp)
success
=
0
;
}
}
else
if
(
strncmp
(
*
mangled
,
"__t"
,
3
)
==
0
&&
((
*
mangled
)[
3
]
==
'i'
||
(
*
mangled
)[
3
]
==
'f'
))
{
p
=
(
*
mangled
)[
3
]
==
'i'
?
" type_info node"
:
" type_info function"
;
(
*
mangled
)
+=
4
;
switch
(
**
mangled
)
{
case
'Q'
:
success
=
demangle_qualified
(
work
,
mangled
,
declp
,
0
,
1
);
break
;
case
't'
:
success
=
demangle_template
(
work
,
mangled
,
declp
,
0
);
break
;
default
:
n
=
consume_count
(
mangled
);
string_appendn
(
declp
,
*
mangled
,
n
);
(
*
mangled
)
+=
n
;
}
if
(
success
&&
**
mangled
!=
'\0'
)
success
=
0
;
if
(
success
)
string_append
(
declp
,
p
);
}
else
{
success
=
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