diff options
author | James E. Wilson <wilson@codesourcery.com> | 2010-03-23 01:22:28 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2010-03-22 18:22:28 -0700 |
commit | 67b476d1b81fc9b20dcee4312f65453301e31741 (patch) | |
tree | 907a1d9c9771e0f4fb739193719e83dd7bd335b6 /gcc | |
parent | 6aabea284f047e6baf96b7b46fca5cf560f9d1e5 (diff) | |
download | gcc-67b476d1b81fc9b20dcee4312f65453301e31741.zip gcc-67b476d1b81fc9b20dcee4312f65453301e31741.tar.gz gcc-67b476d1b81fc9b20dcee4312f65453301e31741.tar.bz2 |
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
Diffstat (limited to 'gcc')
-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 01868b5..0e2b748 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 f4706c7..fe04256 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"))] |