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
5130a5cc
Commit
5130a5cc
authored
Apr 03, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r670
parent
3a7587e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
gcc/calls.c
+2
-1
gcc/stmt.c
+5
-5
No files found.
gcc/calls.c
View file @
5130a5cc
...
...
@@ -796,7 +796,8 @@ expand_call (exp, target, ignore, modifier)
}
copy
=
gen_rtx
(
MEM
,
BLKmode
,
allocate_dynamic_stack_space
(
size_rtx
,
0
));
allocate_dynamic_stack_space
(
size_rtx
,
0
,
TYPE_ALIGN
(
type
)));
}
else
copy
=
assign_stack_temp
(
TYPE_MODE
(
type
),
size
,
1
);
...
...
gcc/stmt.c
View file @
5130a5cc
...
...
@@ -2745,7 +2745,7 @@ expand_decl (decl)
free_temp_slots
();
/* Allocate space on the stack for the variable. */
address
=
allocate_dynamic_stack_space
(
size
,
0
);
address
=
allocate_dynamic_stack_space
(
size
,
0
,
DECL_ALIGN
(
decl
)
);
if
(
nonlocal_goto_stack_level
!=
0
)
emit_move_insn
(
nonlocal_goto_stack_level
,
stack_pointer_rtx
);
...
...
@@ -3651,7 +3651,7 @@ expand_end_case (orig_index)
if
(
HAVE_casesi
)
{
enum
machine_mode
index_mode
=
SImode
;
tree
index_type
=
GET_MODE_BITSIZE
(
index_mode
);
int
index_bits
=
GET_MODE_BITSIZE
(
index_mode
);
/* Convert the index to SImode. */
if
(
GET_MODE_BITSIZE
(
TYPE_MODE
(
TREE_TYPE
(
index_expr
)))
...
...
@@ -3662,7 +3662,7 @@ expand_end_case (orig_index)
minval
=
integer_zero_node
;
}
if
(
TYPE_MODE
(
TREE_TYPE
(
index_expr
))
!=
index_mode
)
index_expr
=
convert
(
type_for_size
(
index_
type
,
0
),
index_expr
=
convert
(
type_for_size
(
index_
bits
,
0
),
index_expr
);
index
=
expand_expr
(
index_expr
,
0
,
VOIDmode
,
0
);
emit_queue
();
...
...
@@ -3683,9 +3683,9 @@ expand_end_case (orig_index)
TREE_TYPE
(
index_expr
),
index_expr
,
minval
)));
index
=
expand_expr
(
index_expr
,
0
,
VOIDmode
,
0
);
index
=
convert_to_mode
(
Pmode
,
index
,
1
);
emit_queue
();
index
=
protect_from_queue
(
index
,
0
);
/* convert_to_mode calls protect_from_queue. */
index
=
convert_to_mode
(
Pmode
,
index
,
1
);
do_pending_stack_adjust
();
do_tablejump
(
index
,
Pmode
,
...
...
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