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
8ace9f18
Commit
8ace9f18
authored
Feb 26, 2003
by
Alan Modra
Committed by
Alan Modra
Feb 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tlink.c (scan_linker_output): Drop leading '.' from symbol names.
From-SVN: r63449
parent
9a29ee42
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
gcc/ChangeLog
+4
-0
gcc/tlink.c
+9
-3
No files found.
gcc/ChangeLog
View file @
8ace9f18
2003
-
02
-
26
Alan
Modra
<
amodra
@bigpond
.
net
.
au
>
*
tlink
.
c
(
scan_linker_output
)
:
Drop
leading
'.'
from
symbol
names
.
2003
-
02
-
25
David
Edelsohn
<
edelsohn
@gnu
.
org
>
*
config
/
rs6000
/
xcoff
.
h
(
ASM_FILE_START
)
:
Do
not
emit
machine
...
...
gcc/tlink.c
View file @
8ace9f18
...
...
@@ -633,10 +633,16 @@ scan_linker_output (fname)
else
if
(
p
=
strchr
(
oldq
,
'"'
),
p
)
p
++
,
q
=
strchr
(
p
,
'"'
);
/* Don't let the strstr's below see the demangled name; we
might get spurious matches. */
if
(
p
)
p
[
-
1
]
=
'\0'
;
{
/* Don't let the strstr's below see the demangled name; we
might get spurious matches. */
p
[
-
1
]
=
'\0'
;
/* powerpc64-linux references .foo when calling function foo. */
if
(
*
p
==
'.'
)
p
++
;
}
/* We need to check for certain error keywords here, or we would
mistakenly use GNU ld's "In function `foo':" message. */
...
...
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