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
498e1ab1
Commit
498e1ab1
authored
Apr 17, 2000
by
Dave Pitts
Committed by
Richard Henderson
Apr 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cplus-dem.c (cplus_demangle_opname): Changed to use islower.
From-SVN: r33189
parent
c94c9817
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
libiberty/ChangeLog
+4
-0
libiberty/cplus-dem.c
+4
-4
No files found.
libiberty/ChangeLog
View file @
498e1ab1
2000-04-16 Dave Pitts <dpitts@cozx.com>
* cplus-dem.c (cplus_demangle_opname): Changed to use islower.
2000-04-05 Richard Henderson <rth@cygnus.com>
2000-04-05 Richard Henderson <rth@cygnus.com>
* splay-tree.c (splay_tree_remove): New.
* splay-tree.c (splay_tree_remove): New.
...
...
libiberty/cplus-dem.c
View file @
498e1ab1
...
@@ -636,8 +636,8 @@ cplus_demangle_opname (opname, result, options)
...
@@ -636,8 +636,8 @@ cplus_demangle_opname (opname, result, options)
}
}
}
}
else
if
(
opname
[
0
]
==
'_'
&&
opname
[
1
]
==
'_'
else
if
(
opname
[
0
]
==
'_'
&&
opname
[
1
]
==
'_'
&&
opname
[
2
]
>=
'a'
&&
opname
[
2
]
<=
'z'
&&
islower
(
opname
[
2
])
&&
opname
[
3
]
>=
'a'
&&
opname
[
3
]
<=
'z'
)
&&
islower
(
opname
[
3
])
)
{
{
if
(
opname
[
4
]
==
'\0'
)
if
(
opname
[
4
]
==
'\0'
)
{
{
...
@@ -4188,8 +4188,8 @@ demangle_function_name (work, mangled, declp, scan)
...
@@ -4188,8 +4188,8 @@ demangle_function_name (work, mangled, declp, scan)
}
}
}
}
else
if
(
declp
->
b
[
0
]
==
'_'
&&
declp
->
b
[
1
]
==
'_'
else
if
(
declp
->
b
[
0
]
==
'_'
&&
declp
->
b
[
1
]
==
'_'
&&
declp
->
b
[
2
]
>=
'a'
&&
declp
->
b
[
2
]
<=
'z'
&&
islower
(
declp
->
b
[
2
])
&&
declp
->
b
[
3
]
>=
'a'
&&
declp
->
b
[
3
]
<=
'z'
)
&&
islower
(
declp
->
b
[
3
])
)
{
{
if
(
declp
->
b
[
4
]
==
'\0'
)
if
(
declp
->
b
[
4
]
==
'\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