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
39157bcc
Commit
39157bcc
authored
Jan 27, 1999
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move `normal_memory_operand' from gcc2 merge into the operand
predicates section of the file. From-SVN: r24890
parent
3ec2b590
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
gcc/config/alpha/alpha.c
+11
-11
No files found.
gcc/config/alpha/alpha.c
View file @
39157bcc
...
@@ -848,17 +848,6 @@ reg_not_elim_operand (op, mode)
...
@@ -848,17 +848,6 @@ reg_not_elim_operand (op, mode)
return
register_operand
(
op
,
mode
);
return
register_operand
(
op
,
mode
);
}
}
/* Return 1 if this function can directly return via $26. */
int
direct_return
()
{
return
(
!
TARGET_OPEN_VMS
&&
reload_completed
&&
alpha_sa_size
()
==
0
&&
get_frame_size
()
==
0
&&
current_function_outgoing_args_size
==
0
&&
current_function_pretend_args_size
==
0
);
}
/* Return 1 is OP is a memory location that is not an reference (using
/* Return 1 is OP is a memory location that is not an reference (using
an AND) to an unaligned location. Take into account what reload
an AND) to an unaligned location. Take into account what reload
...
@@ -882,6 +871,17 @@ normal_memory_operand (op, mode)
...
@@ -882,6 +871,17 @@ normal_memory_operand (op, mode)
return
GET_CODE
(
op
)
==
MEM
&&
GET_CODE
(
XEXP
(
op
,
0
))
!=
AND
;
return
GET_CODE
(
op
)
==
MEM
&&
GET_CODE
(
XEXP
(
op
,
0
))
!=
AND
;
}
}
/* Return 1 if this function can directly return via $26. */
int
direct_return
()
{
return
(
!
TARGET_OPEN_VMS
&&
reload_completed
&&
alpha_sa_size
()
==
0
&&
get_frame_size
()
==
0
&&
current_function_outgoing_args_size
==
0
&&
current_function_pretend_args_size
==
0
);
}
/* REF is an alignable memory location. Place an aligned SImode
/* REF is an alignable memory location. Place an aligned SImode
reference into *PALIGNED_MEM and the number of bits to shift into
reference into *PALIGNED_MEM and the number of bits to shift into
...
...
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