diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-04 21:34:41 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-04 21:34:41 +0000 |
commit | 5f80759ec58903b4e1d9fedbf9227137da81505e (patch) | |
tree | c21648cdb82d40a9c8116447fafaeddbf73d208f /gcc/config/pa | |
parent | d1dd9ac0caa06afe7e122d1c8012ec6fba5a9b9e (diff) | |
download | gcc-5f80759ec58903b4e1d9fedbf9227137da81505e.tar.gz |
* config/pa/linux-atomic.c: Eliminate conditional include of
errno.h on non-LP64 systems to simplify build requirements.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147109 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/linux-atomic.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config/pa/linux-atomic.c b/gcc/config/pa/linux-atomic.c index 00fdf526556..38e87297752 100644 --- a/gcc/config/pa/linux-atomic.c +++ b/gcc/config/pa/linux-atomic.c @@ -24,14 +24,9 @@ a copy of the GCC Runtime Library Exception along with this program; see the files COPYING3 and COPYING.RUNTIME respectively. If not, see <http://www.gnu.org/licenses/>. */ -/* FIXME: work around build failure for hppa64-linux-gnu target. */ -#ifndef _LP64 -#include <errno.h> -#else #define EFAULT 14 #define EBUSY 16 #define ENOSYS 251 -#endif /* All PA-RISC implementations supported by linux have strongly ordered loads and stores. Only cache flushes and purges can be |