diff options
author | cognet <cognet@FreeBSD.org> | 2004-09-23 23:14:09 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2004-09-23 23:14:09 +0000 |
commit | 1c608783756a83e9a18f4bfd7de3b3352129b300 (patch) | |
tree | 170ba21a5cf015c7dea7ebd52df2ca3d3a82b618 /lib | |
parent | 8cecfaa3a47404a13496b061888c5c04d4fac4de (diff) | |
download | FreeBSD-src-1c608783756a83e9a18f4bfd7de3b3352129b300.zip FreeBSD-src-1c608783756a83e9a18f4bfd7de3b3352129b300.tar.gz |
Arbitraly choose the Variant II for arm.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/tls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/tls.c b/lib/libc/gen/tls.c index 6948912..703bfef 100644 --- a/lib/libc/gen/tls.c +++ b/lib/libc/gen/tls.c @@ -43,7 +43,8 @@ #if defined(__ia64__) || defined(__alpha__) || defined(__powerpc__) #define TLS_VARIANT_I #endif -#if defined(__i386__) || defined(__amd64__) || defined(__sparc64__) +#if defined(__i386__) || defined(__amd64__) || defined(__sparc64__) || \ + defined(__arm__) #define TLS_VARIANT_II #endif |