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
25a1b918
Commit
25a1b918
authored
Mar 25, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(CONST_COSTS): Reflect the change in m68k.md.
From-SVN: r6903
parent
5bf13618
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
gcc/config/m68k/m68k.h
+6
-5
No files found.
gcc/config/m68k/m68k.h
View file @
25a1b918
/* Definitions of target machine for GNU compiler. Sun 68000/68020 version.
/* Definitions of target machine for GNU compiler. Sun 68000/68020 version.
Copyright (C) 1987, 1988, 1993 Free Software Foundation, Inc.
Copyright (C) 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -1355,10 +1356,10 @@ __transfer_from_trampoline () \
...
@@ -1355,10 +1356,10 @@ __transfer_from_trampoline () \
if (RTX == const0_rtx) return 0; \
if (RTX == const0_rtx) return 0; \
/* Constants between -128 and 127 are cheap due to moveq */
\
/* Constants between -128 and 127 are cheap due to moveq */
\
if (INTVAL (RTX) >= -128 && INTVAL (RTX) <= 127) return 1; \
if (INTVAL (RTX) >= -128 && INTVAL (RTX) <= 127) return 1; \
/* Constants between -
136 and 254
are easily generated */
\
/* Constants between -
256 and 255
are easily generated */
\
/* by
intelligent uses of moveq, add[q], and subq
*/
\
/* by
use of moveq and not.b
*/
\
if ((OUTER_CODE) == SET && INTVAL (RTX) >= -
13
6 \
if ((OUTER_CODE) == SET && INTVAL (RTX) >= -
25
6 \
&& INTVAL (RTX) <
= 254
) return 2; \
&& INTVAL (RTX) <
256
) return 2; \
case CONST: \
case CONST: \
case LABEL_REF: \
case LABEL_REF: \
case SYMBOL_REF: \
case SYMBOL_REF: \
...
...
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