diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2005-09-24 15:47:57 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2005-09-24 15:47:57 +0000 |
commit | e347ff9e3d0cfd13aa97f51d99dc08b280c94d7d (patch) | |
tree | a88b46f047a057267f6bc3c14b13d7f1b941799a | |
parent | 06191a239b2fe34bcc7338dcefdb1f3b9289c239 (diff) | |
download | gcc-e347ff9e3d0cfd13aa97f51d99dc08b280c94d7d.zip gcc-e347ff9e3d0cfd13aa97f51d99dc08b280c94d7d.tar.gz gcc-e347ff9e3d0cfd13aa97f51d99dc08b280c94d7d.tar.bz2 |
* config/i386/i386.md (*tls_global_dynamic_64,
*tls_local_dynamic_base_64): Add missing mode to call.
(tls_global_dynamic_64, tls_local_dynamic_base_64): Likewise.
From-SVN: r104602
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/i386/i386.md | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48bf615..7d63a5b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2005-09-24 Alexandre Oliva <aoliva@redhat.com> + + * config/i386/i386.md (*tls_global_dynamic_64, + *tls_local_dynamic_base_64): Add missing mode to call. + (tls_global_dynamic_64, tls_local_dynamic_base_64): Likewise. + 2005-09-24 Jan Hubicka <jh@suse.cz> * cgraph.c (cgraph_clone_edge): Make the scale gcov_type. diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index c1d455a..72f927c 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -14076,8 +14076,8 @@ (define_insn "*tls_global_dynamic_64" [(set (match_operand:DI 0 "register_operand" "=a") - (call (mem:QI (match_operand:DI 2 "call_insn_operand" "")) - (match_operand:DI 3 "" ""))) + (call:DI (mem:QI (match_operand:DI 2 "call_insn_operand" "")) + (match_operand:DI 3 "" ""))) (unspec:DI [(match_operand:DI 1 "tls_symbolic_operand" "")] UNSPEC_TLS_GD)] "TARGET_64BIT" @@ -14087,7 +14087,7 @@ (define_expand "tls_global_dynamic_64" [(parallel [(set (match_operand:DI 0 "register_operand" "") - (call (mem:QI (match_dup 2)) (const_int 0))) + (call:DI (mem:QI (match_dup 2)) (const_int 0))) (unspec:DI [(match_operand:DI 1 "tls_symbolic_operand" "")] UNSPEC_TLS_GD)])] "" @@ -14143,8 +14143,8 @@ (define_insn "*tls_local_dynamic_base_64" [(set (match_operand:DI 0 "register_operand" "=a") - (call (mem:QI (match_operand:DI 1 "call_insn_operand" "")) - (match_operand:DI 2 "" ""))) + (call:DI (mem:QI (match_operand:DI 1 "call_insn_operand" "")) + (match_operand:DI 2 "" ""))) (unspec:DI [(const_int 0)] UNSPEC_TLS_LD_BASE)] "TARGET_64BIT" "lea{q}\t{%&@TLSLD(%%rip), %%rdi|%%rdi, %&@TLSLD[%%rip]}\;call\t%P1" @@ -14153,7 +14153,7 @@ (define_expand "tls_local_dynamic_base_64" [(parallel [(set (match_operand:DI 0 "register_operand" "") - (call (mem:QI (match_dup 1)) (const_int 0))) + (call:DI (mem:QI (match_dup 1)) (const_int 0))) (unspec:DI [(const_int 0)] UNSPEC_TLS_LD_BASE)])] "" { |