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
2dfe5480
Commit
2dfe5480
authored
Mar 05, 1997
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(complemented_arith_operand): Delete function.
(print_operand): Don't handle `e' for CONST_INT. From-SVN: r13692
parent
9da7b106
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
gcc/config/mips/mips.c
+0
-18
No files found.
gcc/config/mips/mips.c
View file @
2dfe5480
...
...
@@ -386,21 +386,6 @@ uns_arith_operand (op, mode)
}
/* Return truth value of whether OP can be used as an operands
where a register or complemented 16 bit unsigned integer is needed. */
int
complemented_arith_operand
(
op
,
mode
)
rtx
op
;
enum
machine_mode
mode
;
{
if
(
GET_CODE
(
op
)
==
CONST_INT
&&
(
~
(
unsigned
HOST_WIDE_INT
)
INTVAL
(
op
)
<
0x10000
))
return
TRUE
;
return
register_operand
(
op
,
mode
);
}
/* Return truth value of whether OP can be used as an operands
where a 16 bit integer is needed */
int
...
...
@@ -4145,9 +4130,6 @@ print_operand (file, op, letter)
else
if
((
letter
==
'd'
)
&&
(
GET_CODE
(
op
)
==
CONST_INT
))
fprintf
(
file
,
"%d"
,
(
INTVAL
(
op
)));
else
if
((
letter
==
'e'
)
&&
(
GET_CODE
(
op
)
==
CONST_INT
))
fprintf
(
file
,
"%d"
,
~
(
INTVAL
(
op
)));
else
if
(
letter
==
'z'
&&
(
GET_CODE
(
op
)
==
CONST_INT
)
&&
INTVAL
(
op
)
==
0
)
...
...
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