diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-10 16:00:44 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-01-10 16:00:44 +0000 |
commit | e69effa463953a71daa17e44ef29e43276d40ceb (patch) | |
tree | ba4adc8aa46ce7bc664e895801bd212e4545ad46 /gcc/configure | |
parent | 892c24269b60c3a2fb83d97ce1f4300806e9137b (diff) | |
download | gcc-e69effa463953a71daa17e44ef29e43276d40ceb.tar.gz |
* configure.ac (HAVE_AS_TLS): Add check for powerpc-ibm-aix.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@195088 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/configure b/gcc/configure index ecdbea403d6..f9cc8f41cf4 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 |