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
73d771f0
Commit
73d771f0
authored
Jan 11, 2001
by
Nick Clifton
Committed by
Nick Clifton
Jan 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialise machine_function structure to zero.
From-SVN: r38888
parent
cbd5937a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+6
-0
gcc/config/d30v/d30v.c
+4
-1
No files found.
gcc/ChangeLog
View file @
73d771f0
2001-01-10 Nick Clifton <nickc@redhat.com>
* config/d30v/d30v.c (d30v_init_machine_status): Initialise
machine_function structure to zero.
Add prototypes for machine_status functions.
2001-01-10 Mark Mitchell <mark@codesourcery.com>
2001-01-10 Mark Mitchell <mark@codesourcery.com>
* c-common.h (CTI_VOID_LIST): Remove.
* c-common.h (CTI_VOID_LIST): Remove.
...
...
gcc/config/d30v/d30v.c
View file @
73d771f0
...
@@ -45,6 +45,9 @@ static void d30v_print_operand_memory_reference PARAMS ((FILE *, rtx));
...
@@ -45,6 +45,9 @@ static void d30v_print_operand_memory_reference PARAMS ((FILE *, rtx));
static
void
d30v_build_long_insn
PARAMS
((
HOST_WIDE_INT
,
HOST_WIDE_INT
,
static
void
d30v_build_long_insn
PARAMS
((
HOST_WIDE_INT
,
HOST_WIDE_INT
,
rtx
,
rtx
));
rtx
,
rtx
));
static
void
d30v_add_gc_roots
PARAMS
((
void
));
static
void
d30v_add_gc_roots
PARAMS
((
void
));
static
void
d30v_init_machine_status
PARAMS
((
struct
function
*
));
static
void
d30v_mark_machine_status
PARAMS
((
struct
function
*
));
static
void
d30v_free_machine_status
PARAMS
((
struct
function
*
));
/* Define the information needed to generate branch and scc insns. This is
/* Define the information needed to generate branch and scc insns. This is
stored from the compare operation. */
stored from the compare operation. */
...
@@ -3596,7 +3599,7 @@ d30v_init_machine_status (p)
...
@@ -3596,7 +3599,7 @@ d30v_init_machine_status (p)
struct
function
*
p
;
struct
function
*
p
;
{
{
p
->
machine
=
p
->
machine
=
(
struct
machine_function
*
)
xmalloc
(
sizeof
(
struct
machine_function
));
(
machine_function
*
)
xcalloc
(
1
,
sizeof
(
machine_function
));
}
}
static
void
static
void
...
...
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