diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.md | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 01868b5aecc..0e2b748d196 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-03-22 James E. Wilson <wilson@codesourcery.com> + + PR target/43348 + * ia64.md (call_nogp, call_value_nogp, sibcall_nogp, call_gp, + call_value_gp,sibcall_gp): Use 's' constraint not 'i'. + 2010-03-22 H.J. Lu <hongjiu.lu@intel.com> * config/i386/i386.c (ix86_target_string): Fix a typo in diff --git a/gcc/config/ia64/ia64.md b/gcc/config/ia64/ia64.md index f4706c7b0d7..fe04256e87e 100644 --- a/gcc/config/ia64/ia64.md +++ b/gcc/config/ia64/ia64.md @@ -4402,7 +4402,7 @@ }) (define_insn "call_nogp" - [(call (mem:DI (match_operand:DI 0 "call_operand" "?b,i")) + [(call (mem:DI (match_operand:DI 0 "call_operand" "?b,s")) (const_int 0)) (clobber (match_operand:DI 1 "register_operand" "=b,b"))] "" @@ -4411,7 +4411,7 @@ (define_insn "call_value_nogp" [(set (match_operand 0 "" "=X,X") - (call (mem:DI (match_operand:DI 1 "call_operand" "?b,i")) + (call (mem:DI (match_operand:DI 1 "call_operand" "?b,s")) (const_int 0))) (clobber (match_operand:DI 2 "register_operand" "=b,b"))] "" @@ -4419,14 +4419,14 @@ [(set_attr "itanium_class" "br,scall")]) (define_insn "sibcall_nogp" - [(call (mem:DI (match_operand:DI 0 "call_operand" "?b,i")) + [(call (mem:DI (match_operand:DI 0 "call_operand" "?b,s")) (const_int 0))] "" "br%+.many %0" [(set_attr "itanium_class" "br,scall")]) (define_insn "call_gp" - [(call (mem:DI (match_operand:DI 0 "call_operand" "?r,i")) + [(call (mem:DI (match_operand:DI 0 "call_operand" "?r,s")) (const_int 1)) (clobber (match_operand:DI 1 "register_operand" "=b,b")) (clobber (match_scratch:DI 2 "=&r,X")) @@ -4467,7 +4467,7 @@ (define_insn "call_value_gp" [(set (match_operand 0 "" "=X,X") - (call (mem:DI (match_operand:DI 1 "call_operand" "?r,i")) + (call (mem:DI (match_operand:DI 1 "call_operand" "?r,s")) (const_int 1))) (clobber (match_operand:DI 2 "register_operand" "=b,b")) (clobber (match_scratch:DI 3 "=&r,X")) @@ -4507,7 +4507,7 @@ }) (define_insn_and_split "sibcall_gp" - [(call (mem:DI (match_operand:DI 0 "call_operand" "?r,i")) + [(call (mem:DI (match_operand:DI 0 "call_operand" "?r,s")) (const_int 1)) (clobber (match_scratch:DI 1 "=&r,X")) (clobber (match_scratch:DI 2 "=b,X"))] |