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
8b83b2a7
Commit
8b83b2a7
authored
Oct 29, 1998
by
Peter Jakubek
Committed by
Jeff Law
Oct 29, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* m68k.h (INDIRECTABLE_1_ADDRESS_P): Fix thinko.
From-SVN: r23446
parent
dedcc399
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
gcc/ChangeLog
+4
-0
gcc/config/m68k/m68k.h
+2
-10
No files found.
gcc/ChangeLog
View file @
8b83b2a7
Fri
Oct
30
00
:
54
:
25
1998
Peter
Jakubek
<
pjak
@snafu
.
de
>
*
m68k
.
h
(
INDIRECTABLE_1_ADDRESS_P
)
:
Fix
thinko
.
Fri
Oct
30
00
:
42
:
34
1998
Mark
Elbrecht
<
snowball3
@usa
.
net
>
*
configure
.
in
(
msdosdjgpp
)
:
Set
exeext
and
target_alias
.
...
...
gcc/config/m68k/m68k.h
View file @
8b83b2a7
...
...
@@ -1426,21 +1426,13 @@ __transfer_from_trampoline () \
|| (GET_CODE (X) == PLUS \
&& LEGITIMATE_BASE_REG_P (XEXP (X, 0)) \
&& GET_CODE (XEXP (X, 1)) == CONST_INT \
&& (TARGET_68020 || (unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000) \
&& (TARGET_68020 \
|| ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000)) \
|| (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx \
&& flag_pic && GET_CODE (XEXP (X, 1)) == SYMBOL_REF) \
|| (GET_CODE (X) == PLUS && XEXP (X, 0) == pic_offset_table_rtx \
&& flag_pic && GET_CODE (XEXP (X, 1)) == LABEL_REF)) \
#if 0
/* This should replace the last two (non-pic) lines
except that Sun's assembler does not seem to handle such operands. */
&& (TARGET_68020 ? CONSTANT_ADDRESS_P (XEXP (X, 1)) \
: (GET_CODE (XEXP (X, 1)) == CONST_INT \
&& ((unsigned) INTVAL (XEXP (X, 1)) + 0x8000) < 0x10000))))
#endif
#define GO_IF_NONINDEXED_ADDRESS(X, ADDR) \
{ if (INDIRECTABLE_1_ADDRESS_P (X)) goto ADDR; }
...
...
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