re PR target/43348 (ICE in final_scan_insn, at final.c:2604)

PR target/43348
* ia64.md (call_nogp, call_value_nogp, sibcall_nogp, call_gp,
call_value_gp,sibcall_gp): Use 's' constraint not 'i'.

From-SVN: r157660
This commit is contained in:
James E. Wilson 2010-03-23 01:22:28 +00:00 committed by Jim Wilson
parent 6aabea284f
commit 67b476d1b8
2 changed files with 12 additions and 6 deletions

View File

@ -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

View File

@ -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"))]