From 8950516e0b1ef0bd63acffda8e81ec85f982d0d7 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Fri, 27 May 2011 15:45:56 +0000 Subject: configure.ac (gcc_cv_as_ix86_tlsgdplt): Check for @tlsgdplt 2011-05-27 Rainer Orth Uros Bizjak * configure.ac (gcc_cv_as_ix86_tlsgdplt): Check for @tlsgdplt (HAVE_AS_IX86_TLSGDPTL): Define. (gcc_cv_as_ix86_tlsldmplt): Check for @tlsldmplt. (HAVE_AS_IX86_TLSLDMPLT): Define. * configure: Regenerate. * config.in: Regenerate. * config/i386/i386.c (ix86_print_operand): Handle code 'p'. * config/i386/i386.md (*tls_global_dynamic_32_gnu): If TARGET_SUN_TLS, use @tlsgdplt or @plt. (*tls_global_dynamic_64): Use @plt if TARGET_SUN_TLS. (*tls_local_dynamic_base_32_gnu): If TARGET_SUN_TLS, use @tlsldmplt or @plt. (*tls_local_dynamic_base_64): Use @plt if TARGET_SUN_TLS. Co-Authored-By: Uros Bizjak From-SVN: r174340 --- gcc/config.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'gcc/config.in') diff --git a/gcc/config.in b/gcc/config.in index 43aa919..d202b038 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -351,6 +351,18 @@ #endif +/* Define if your assembler supports @tlsgdplt. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_IX86_TLSGDPLT +#endif + + +/* Define if your assembler supports @tlsldmplt. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_IX86_TLSLDMPLT +#endif + + /* Define if your assembler supports the lituse_jsrdirect relocation. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_JSRDIRECT_RELOCS -- cgit v1.1