aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/s390/s390.md
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/s390/s390.md')
-rw-r--r--gcc/config/s390/s390.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md
index dbeaea4..ccf70c7 100644
--- a/gcc/config/s390/s390.md
+++ b/gcc/config/s390/s390.md
@@ -7892,7 +7892,7 @@
(define_expand "allocate_stack"
[(match_operand 0 "general_operand" "")
(match_operand 1 "general_operand" "")]
- "TARGET_BACKCHAIN || TARGET_KERNEL_BACKCHAIN"
+ "TARGET_BACKCHAIN"
{
rtx temp = gen_reg_rtx (Pmode);
@@ -7942,7 +7942,7 @@
(define_expand "restore_stack_block"
[(match_operand 0 "register_operand" "")
(match_operand 1 "register_operand" "")]
- "TARGET_BACKCHAIN || TARGET_KERNEL_BACKCHAIN"
+ "TARGET_BACKCHAIN"
{
rtx temp = gen_reg_rtx (Pmode);
@@ -7964,7 +7964,7 @@
/* Copy the backchain to the first word, sp to the second and the
literal pool base to the third. */
- if (TARGET_BACKCHAIN || TARGET_KERNEL_BACKCHAIN)
+ if (TARGET_BACKCHAIN)
{
rtx temp = force_reg (Pmode, s390_back_chain_rtx ());
emit_move_insn (operand_subword (operands[0], 0, 0, mode), temp);
@@ -7988,7 +7988,7 @@
/* Restore the backchain from the first word, sp from the second and the
literal pool base from the third. */
- if (TARGET_BACKCHAIN || TARGET_KERNEL_BACKCHAIN)
+ if (TARGET_BACKCHAIN)
temp = force_reg (Pmode, operand_subword (operands[1], 0, 0, mode));
emit_move_insn (base, operand_subword (operands[1], 2, 0, mode));