From 3b026746b51c851a1dd3f234599956130c266410 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 3 Jun 2003 17:15:23 +0000 Subject: [PATCH] FRV: Use a signed 6-bit immediate value not unsigned for mdrotli insn. Use maintainer mode to regenerate ports. --- cpu/frv.cpu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpu/frv.cpu b/cpu/frv.cpu index dfe0290..7209790 100644 --- a/cpu/frv.cpu +++ b/cpu/frv.cpu @@ -6643,16 +6643,16 @@ (dni name (comment) ((UNIT FM0) (MACH fr400) (FR400-MAJOR M-2)) - (.str name "$pack $FRinti,$u6,$FRintk") - (+ pack FRintk op FRinti ope u6) + (.str name "$pack $FRinti,$s6,$FRintk") + (+ pack FRintk op FRinti ope s6) (if (orif (register-unaligned FRinti 2) (register-unaligned FRintk 2)) (c-call VOID "@cpu@_media_register_not_aligned") (sequence () - (set FRintk (operation FRinti (and u6 #x1f))) + (set FRintk (operation FRinti (and s6 #x1f))) (set (nextreg h-fr_int FRintk 1) (operation (nextreg h-fr_int FRinti 1) - (and u6 #x1f))))) + (and s6 #x1f))))) ((fr400 (unit u-media-3-quad))) ) ) -- 2.43.5