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
3c350eb3
Commit
3c350eb3
authored
Feb 22, 1999
by
Craig Burley
Committed by
Craig Burley
Feb 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix -fsyntax-only ICEs
From-SVN: r25365
parent
e2e0986e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletions
+24
-1
gcc/ChangeLog
+6
-0
gcc/varasm.c
+18
-1
No files found.
gcc/ChangeLog
View file @
3c350eb3
...
...
@@ -4,6 +4,12 @@ Mon Feb 22 10:55:00 1999 Gavin Romig-Koch <gavin@cygnus.com>
larger
than
long
-
longs
,
with
a
warning
about
integer
constants
being
larger
than
the
largest
target
integer
.
Mon
Feb
22
08
:
35
:
38
1999
Craig
Burley
<
craig
@jcb
-
sc
.
com
>
Fix
-
fsyntax
-
only
ICEs
:
*
varasm
.
c
(
assemble_zeros
,
assemble_variable
,
output_constant_def
)
:
Do
nothing
when
-
fsyntax
-
only
.
Fri
Feb
19
18
:
18
:
56
1999
Don
Bowman
<
don
@pixstream
.
com
>
*
configure
.
in
(
mips
*-*-
vxworks
*
)
:
Enable
gthreads
vxworks
support
.
...
...
gcc/varasm.c
View file @
3c350eb3
...
...
@@ -1062,6 +1062,10 @@ void
assemble_zeros
(
size
)
int
size
;
{
/* Do no output if -fsyntax-only. */
if
(
flag_syntax_only
)
return
;
#ifdef ASM_NO_SKIP_IN_TEXT
/* The `space' pseudo in the text section outputs nop insns rather than 0s,
so we must output 0s explicitly in the text section. */
...
...
@@ -1168,6 +1172,10 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
return
;
TREE_ASM_WRITTEN
(
decl
)
=
1
;
/* Do no output if -fsyntax-only. */
if
(
flag_syntax_only
)
return
;
#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
/* File-scope global variables are output here. */
if
((
write_symbols
==
DBX_DEBUG
||
write_symbols
==
XCOFF_DEBUG
)
...
...
@@ -1235,6 +1243,10 @@ assemble_variable (decl, top_level, at_end, dont_output_data)
TREE_ASM_WRITTEN
(
decl
)
=
1
;
/* Do no output if -fsyntax-only. */
if
(
flag_syntax_only
)
return
;
app_disable
();
if
(
!
dont_output_data
)
...
...
@@ -3017,7 +3029,12 @@ output_constant_def (exp)
}
}
else
output_constant_def_contents
(
exp
,
reloc
,
const_labelno
++
);
{
/* Do no output if -fsyntax-only. */
if
(
!
flag_syntax_only
)
output_constant_def_contents
(
exp
,
reloc
,
const_labelno
);
++
const_labelno
;
}
}
return
TREE_CST_RTL
(
exp
);
...
...
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