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
e4faf1eb
Commit
e4faf1eb
authored
Jun 18, 1999
by
Nick Clifton
Committed by
Nick Clifton
Jun 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use ASM_OUTPUT_DEF_FROM_DECLS in preference to ASM_OUTPUT_DEF, if it is defined.
From-SVN: r27585
parent
a281e39a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
gcc/ChangeLog
+8
-0
gcc/tm.texi
+8
-0
gcc/varasm.c
+4
-0
No files found.
gcc/ChangeLog
View file @
e4faf1eb
Wed Jun 16 18:19:13 1999 Nick Clifton <nickc@cygnus.com>
* varasm.c (assemble_alias): Use ASM_OUTPUT_DEF_FROM_DECLS in
preference to ASM_OUTPUT_DEF, if it is defined.
* tm.texi: Document new, optional target macro
ASM_OUTPUT_DEF_FROM_DECLS.
Thu Jun 17 15:07 1999 Bruce Korb <ddsinc09@ix.netcom.com>
* fixincludes: ISCNTL patch
...
...
gcc/tm.texi
View file @
e4faf1eb
...
...
@@ -5763,6 +5763,14 @@ which defines (equates) the symbol @var{name} to have the value @var{value}.
If
SET_ASM_OP
is
defined
,
a
default
definition
is
provided
which
is
correct
for
most
systems
.
@findex
ASM_OUTPUT_DEF_FROM_DECLS
@item
ASM_OUTPUT_DEF
(
@var
{
stream
},
@var
{
decl_of_name
},
@var
{
decl_of_value
})
A
C
statement
to
output
to
the
stdio
stream
@var
{
stream
}
assembler
code
which
defines
(
equates
)
the
symbol
whoes
tree
node
is
@var
{
decl_of_name
}
to
have
the
value
of
the
tree
node
@var
{
decl_of_value
}.
This
macro
will
be
used
in
preference
to
@samp
{
ASM_OUTPUT_DEF
}
if
it
is
defined
and
if
the
tree
nodes
are
available
.
@findex
ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
@item
ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
(
@var
{
stream
},
@var
{
symbol
},
@var
{
high
},
@var
{
low
})
A
C
statement
to
output
to
the
stdio
stream
@var
{
stream
}
assembler
code
...
...
gcc/varasm.c
View file @
e4faf1eb
...
...
@@ -4423,7 +4423,11 @@ assemble_alias (decl, target)
ASM_GLOBALIZE_LABEL
(
asm_out_file
,
name
);
}
#ifdef ASM_OUTPUT_DEF_FROM_DECLS
ASM_OUTPUT_DEF_FROM_DECLS
(
asm_out_file
,
decl
,
target
);
#else
ASM_OUTPUT_DEF
(
asm_out_file
,
name
,
IDENTIFIER_POINTER
(
target
));
#endif
TREE_ASM_WRITTEN
(
decl
)
=
1
;
#else
#ifdef ASM_OUTPUT_WEAK_ALIAS
...
...
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