diff options
author | David Edelsohn <dje.gcc@gmail.com> | 2013-01-10 16:00:44 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2013-01-10 11:00:44 -0500 |
commit | 7a8b1ec4fc1b6c157f8f34d8d4586a8e8109e455 (patch) | |
tree | ba4adc8aa46ce7bc664e895801bd212e4545ad46 /gcc | |
parent | 7900ea7d9948d03167e78a98dbcf9d1b50425b47 (diff) | |
download | gcc-7a8b1ec4fc1b6c157f8f34d8d4586a8e8109e455.zip gcc-7a8b1ec4fc1b6c157f8f34d8d4586a8e8109e455.tar.gz gcc-7a8b1ec4fc1b6c157f8f34d8d4586a8e8109e455.tar.bz2 |
configure.ac (HAVE_AS_TLS): Add check for powerpc-ibm-aix.
* configure.ac (HAVE_AS_TLS): Add check for powerpc-ibm-aix.
* configure: Regenerate.
From-SVN: r195088
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 18 | ||||
-rw-r--r-- | gcc/configure.ac | 18 |
3 files changed, 41 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fc79821..dc65d88 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-01-10 David Edelsohn <dje.gcc@gmail.com> + + * configure.ac (HAVE_AS_TLS): Add check for powerpc-ibm-aix. + * configure: Regenerate. + 2013-01-10 Richard Biener <rguenther@suse.de> * builtins.c (expand_builtin_init_trampoline): Use diff --git a/gcc/configure b/gcc/configure index ecdbea4..f9cc8f4 100755 --- a/gcc/configure +++ b/gcc/configure @@ -23245,6 +23245,24 @@ foo: .long 25 tls_first_minor=20 tls_as_opt='--fatal-warnings' ;; + powerpc-ibm-aix*) + conftest_s=' + .extern __get_tpointer + .toc +LC..1: + .tc a[TC],a[TL]@le + .csect .text[PR] +.tlstest: + lwz 9,LC..1(2) + bla __get_tpointer + lwzx 3,9,3 + .globl a + .csect a[TL],4 +a: + .space 4' + tls_first_major=0 + tls_first_minor=0 + ;; powerpc-*-*) conftest_s=' .section ".tdata","awT",@progbits diff --git a/gcc/configure.ac b/gcc/configure.ac index 447a0ca..7cbc705 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3010,6 +3010,24 @@ foo: .long 25 tls_first_minor=20 tls_as_opt='--fatal-warnings' ;; + powerpc-ibm-aix*) + conftest_s=' + .extern __get_tpointer + .toc +LC..1: + .tc a[TC],a[TL]@le + .csect .text[PR] +.tlstest: + lwz 9,LC..1(2) + bla __get_tpointer + lwzx 3,9,3 + .globl a + .csect a[TL],4 +a: + .space 4' + tls_first_major=0 + tls_first_minor=0 + ;; powerpc-*-*) conftest_s=' .section ".tdata","awT",@progbits |