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
9daca635
Commit
9daca635
authored
Jul 21, 1999
by
Nick Clifton
Committed by
Nick Clifton
Jul 21, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in previous delta
From-SVN: r28210
parent
0b094f65
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.h
+3
-3
No files found.
gcc/ChangeLog
View file @
9daca635
Wed
Jul
21
16
:
00
:
32
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
arm
/
arm
.
h
(
INITIAL_ELIMINATION_OFFSET
)
:
Fix
typo
introduced
in
previous
delta
.
Wed
Jul
21
14
:
30
:
51
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
c
-
lang
.
c
(
finish_file
)
:
Rename
void_list_node
to
void_list_node_1
...
...
gcc/config/arm/arm.h
View file @
9daca635
...
...
@@ -1287,8 +1287,8 @@ enum reg_class
(OFFSET) = 0; \
else if ((FROM) == FRAME_POINTER_REGNUM \
&& (TO) == STACK_POINTER_REGNUM) \
(OFFSET) =
(
current_function_outgoing_args_size \
+
NUM_INTS (get_frame_size ())
); \
(OFFSET) = current_function_outgoing_args_size \
+
((get_frame_size () + 3) & ~3
); \
else \
{ \
int regno; \
...
...
@@ -1317,7 +1317,7 @@ enum reg_class
&& (regs_ever_live[LR_REGNUM] || saved_hard_reg)) \
offset += 4; \
offset += current_function_outgoing_args_size; \
(OFFSET) =
NUM_INTS (get_frame_size ()
) + offset; \
(OFFSET) =
((get_frame_size () + 3) & ~3
) + offset; \
} \
} \
}
...
...
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