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
cbed4565
Commit
cbed4565
authored
Oct 24, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(assemble_variable): Set last_assemble_variable_decl.
(last_assemble_variable_decl): New variable. From-SVN: r5877
parent
84a92af4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
gcc/varasm.c
+10
-0
No files found.
gcc/varasm.c
View file @
cbed4565
...
...
@@ -87,6 +87,13 @@ int var_labelno;
int
size_directive_output
;
/* The last decl for which assemble_variable was called,
if it did ASM_DECLARE_OBJECT_NAME.
If the last call to assemble_variable didn't do that,
this holds 0. */
tree
last_assemble_variable_decl
;
/* Nonzero if at least one function definition has been seen. */
static
int
function_defined
;
...
...
@@ -858,6 +865,8 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
int
reloc
=
0
;
enum
in_section
saved_in_section
;
last_assemble_variable_decl
=
0
;
if
(
output_bytecode
)
return
;
...
...
@@ -1179,6 +1188,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
/* Do any machine/system dependent processing of the object. */
#ifdef ASM_DECLARE_OBJECT_NAME
last_assemble_variable_decl
=
decl
;
ASM_DECLARE_OBJECT_NAME
(
asm_out_file
,
name
,
decl
);
#else
/* Standard thing is just output label for the object. */
...
...
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