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
7488cc6d
Commit
7488cc6d
authored
Jul 22, 2002
by
David Edelsohn
Committed by
David Edelsohn
Jul 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* collect2.c (is_ctor_dtor): Add other possible JOINER values.
From-SVN: r55656
parent
b41caf7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/ChangeLog
+4
-0
gcc/collect2.c
+9
-0
No files found.
gcc/ChangeLog
View file @
7488cc6d
2002-07-22 David Edelsohn <edelsohn@gnu.org>
* collect2.c (is_ctor_dtor): Add other possible JOINER values.
2002-07-22 Richard Earnshaw <rearnsha@arm.com>
* arm.md (movqi): If optimizing and we can create pseudos, use
...
...
gcc/collect2.c
View file @
7488cc6d
...
...
@@ -573,6 +573,15 @@ is_ctor_dtor (s)
const
char
*
orig_s
=
s
;
static
const
struct
names
special
[]
=
{
#ifndef NO_DOLLAR_IN_LABEL
{
"GLOBAL__I$"
,
sizeof
(
"GLOBAL__I$"
)
-
1
,
1
,
0
},
{
"GLOBAL__D$"
,
sizeof
(
"GLOBAL__D$"
)
-
1
,
2
,
0
},
#else
#ifndef NO_DOT_IN_LABEL
{
"GLOBAL__I."
,
sizeof
(
"GLOBAL__I."
)
-
1
,
1
,
0
},
{
"GLOBAL__D."
,
sizeof
(
"GLOBAL__D."
)
-
1
,
2
,
0
},
#endif
/* NO_DOT_IN_LABEL */
#endif
/* NO_DOLLAR_IN_LABEL */
{
"GLOBAL__I_"
,
sizeof
(
"GLOBAL__I_"
)
-
1
,
1
,
0
},
{
"GLOBAL__D_"
,
sizeof
(
"GLOBAL__D_"
)
-
1
,
2
,
0
},
{
"GLOBAL__F_"
,
sizeof
(
"GLOBAL__F_"
)
-
1
,
5
,
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