mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
tile: avoid using _LP64
The convention is to use __WORDSIZE everywhere. I happened to notice that we weren't doing this in __tls_get_addr.S.
This commit is contained in:
parent
9b7108251c
commit
cbf92fc466
@ -1,3 +1,7 @@
|
||||
2012-05-12 Chris Metcalf <cmetcalf@tilera.com>
|
||||
|
||||
* sysdeps/tile/__tls_get_addr.S: Use __WORDSIZE, not _LP64.
|
||||
|
||||
2012-05-12 Chris Metcalf <cmetcalf@tilera.com>
|
||||
|
||||
* sysdeps/tile/stackguard-macros.h: New file.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 2011 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2011-2012 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
|
||||
|
||||
@ -18,8 +18,9 @@
|
||||
|
||||
#include <sysdep.h>
|
||||
#include <tls.h>
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
#ifdef _LP64
|
||||
#if __WORDSIZE == 64
|
||||
#define LOG_SIZEOF_DTV_T 4
|
||||
#else
|
||||
#define LOG_SIZEOF_DTV_T 3
|
||||
|
Loading…
Reference in New Issue
Block a user