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
7d505b82
Commit
7d505b82
authored
Jul 29, 1999
by
Nick Clifton
Committed by
Nick Clifton
Jul 29, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use force_operand to make sure that the buffer address is in a suitable form
to be passed to force_reg. From-SVN: r28334
parent
89693f29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+6
-0
gcc/builtins.c
+1
-1
No files found.
gcc/ChangeLog
View file @
7d505b82
Thu
Jul
29
09
:
21
:
42
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
builtins
.
c
(
expand_builtin_setjmp
)
:
Use
force_operand
to
make
sure
that
the
buffer
address
is
in
a
suitable
form
to
be
passed
to
force_reg
.
Wed
Jul
28
12
:
50
:
48
1999
Geoff
Keating
<
geoffk
@cygnus
.
com
>
Wed
Jul
28
12
:
50
:
48
1999
Geoff
Keating
<
geoffk
@cygnus
.
com
>
*
config
/
mips
/
mips
.
c
:
system
.
h
handles
MIN
and
MAX
,
don
'
t
undefine
*
config
/
mips
/
mips
.
c
:
system
.
h
handles
MIN
and
MAX
,
don
'
t
undefine
...
...
gcc/builtins.c
View file @
7d505b82
...
@@ -306,7 +306,7 @@ expand_builtin_setjmp (buf_addr, target, first_label, next_label)
...
@@ -306,7 +306,7 @@ expand_builtin_setjmp (buf_addr, target, first_label, next_label)
buf_addr
=
convert_memory_address
(
Pmode
,
buf_addr
);
buf_addr
=
convert_memory_address
(
Pmode
,
buf_addr
);
#endif
#endif
buf_addr
=
force_reg
(
Pmode
,
buf_addr
);
buf_addr
=
force_reg
(
Pmode
,
force_operand
(
buf_addr
,
NULL_RTX
)
);
if
(
target
==
0
||
GET_CODE
(
target
)
!=
REG
if
(
target
==
0
||
GET_CODE
(
target
)
!=
REG
||
REGNO
(
target
)
<
FIRST_PSEUDO_REGISTER
)
||
REGNO
(
target
)
<
FIRST_PSEUDO_REGISTER
)
...
...
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