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
e1fde2b5
Commit
e1fde2b5
authored
Apr 18, 1992
by
Charles Hannum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
entered into RCS
From-SVN: r781
parent
def9623c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
gcc/config/arm/arm.h
+1
-1
gcc/config/fx80/fx80.h
+1
-1
gcc/config/gmicro/gmicro.h
+1
-1
gcc/config/spur/spur.h
+1
-1
No files found.
gcc/config/arm/arm.h
View file @
e1fde2b5
...
...
@@ -891,7 +891,7 @@ do \
/* The relative costs of various types of constants. Note that cse.c defines
REG = 1, SUBREG = 2, any node = (2 + sum of subnodes). */
#define CONST_COSTS(RTX, CODE) \
#define CONST_COSTS(RTX, CODE
, OUTER_CODE
) \
case CONST_INT: \
if (const_ok_for_arm (INTVAL (RTX))) \
return (2); \
...
...
gcc/config/fx80/fx80.h
View file @
e1fde2b5
...
...
@@ -870,7 +870,7 @@ extern enum reg_class regno_reg_class[];
of a switch statement. If the code is computed here,
return it with a return statement. Otherwise, break from the switch. */
#define CONST_COSTS(RTX,CODE) \
#define CONST_COSTS(RTX,CODE
,OUTER_CODE
) \
case CONST_INT: \
/* Constant zero is super cheap due to clr instruction. */
\
if (RTX == const0_rtx) return 0; \
...
...
gcc/config/gmicro/gmicro.h
View file @
e1fde2b5
...
...
@@ -1177,7 +1177,7 @@ extern enum reg_class regno_reg_class[];
of a switch statement. If the code is computed here,
return it with a return statement. Otherwise, break from the switch. */
#define CONST_COSTS(RTX,CODE) \
#define CONST_COSTS(RTX,CODE
,OUTER_CODE
) \
case CONST_INT: \
if ((unsigned) INTVAL (RTX) < 8) return 0; \
if ((unsigned) (INTVAL (RTX) + 0x80) < 0x100) return 1; \
...
...
gcc/config/spur/spur.h
View file @
e1fde2b5
...
...
@@ -774,7 +774,7 @@ extern int current_function_pretend_args_size;
of a switch statement. If the code is computed here,
return it with a return statement. Otherwise, break from the switch. */
#define CONST_COSTS(RTX,CODE) \
#define CONST_COSTS(RTX,CODE
,OUTER_CODE
) \
case CONST_INT: \
if (INTVAL (RTX) < 0x2000 && INTVAL (RTX) >= -0x2000) return 1; \
case CONST: \
...
...
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