diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-23 01:22:28 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-23 01:22:28 +0000 |
commit | e4f53c6ae2be95cb52bddc1c6b0f45317ecd940c (patch) | |
tree | 907a1d9c9771e0f4fb739193719e83dd7bd335b6 /gcc/config/ia64/ia64.md | |
parent | fd7b8fedaae16603d1c999e9d88cb160fb30089a (diff) | |
download | gcc-e4f53c6ae2be95cb52bddc1c6b0f45317ecd940c.tar.gz |
PR target/43348
* ia64.md (call_nogp, call_value_nogp, sibcall_nogp, call_gp,
call_value_gp,sibcall_gp): Use 's' constraint not 'i'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157660 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ia64/ia64.md')
-rw-r--r-- | gcc/config/ia64/ia64.md | 12 |
1 files changed, 6 insertions, 6 deletions
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"))] |