From 2b8849d78b60a5563157353ba3bd8d6a7ca51354 Mon Sep 17 00:00:00 2001 From: ebotcazou Date: Tue, 28 Sep 2004 11:40:27 +0000 Subject: * config/sparc/sparc.md (call_address_struct_value_sp32): Properly mask the immediate field of the 'unimp' instruction. (call_symbolic_struct_value_sp32): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88227 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/sparc/sparc.md | 10 ++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 563ef3e375a..7247c385f54 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-09-28 Eric Botcazou + + * config/sparc/sparc.md (call_address_struct_value_sp32): + Properly mask the immediate field of the 'unimp' instruction. + (call_symbolic_struct_value_sp32): Likewise. + 2004-09-24 Ben Elliston Steven Bosscher Andrew Pinski diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index d91e51d5656..182afb9a7cd 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -7438,7 +7438,10 @@ (clobber (reg:SI 15))] ;;- Do not use operand 1 for most machines. "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) > 0" - "call\t%a0, %1\n\t nop\n\tunimp\t%2" +{ + operands[2] = GEN_INT (INTVAL (operands[2]) & 0xfff); + return "call\t%a0, %1\n\t nop\n\tunimp\t%2"; +} [(set_attr "type" "call_no_delay_slot") (set_attr "length" "3")]) @@ -7451,7 +7454,10 @@ (clobber (reg:SI 15))] ;;- Do not use operand 1 for most machines. "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) > 0" - "call\t%a0, %1\n\t nop\n\tunimp\t%2" +{ + operands[2] = GEN_INT (INTVAL (operands[2]) & 0xfff); + return "call\t%a0, %1\n\t nop\n\tunimp\t%2"; +} [(set_attr "type" "call_no_delay_slot") (set_attr "length" "3")]) -- cgit v1.2.1