diff options
author | David Edelsohn <edelsohn@gnu.org> | 1997-04-14 22:09:53 +0000 |
---|---|---|
committer | David Edelsohn <edelsohn@gnu.org> | 1997-04-14 22:09:53 +0000 |
commit | 6318808ce5898bcdf34c47691283e6493f6a7133 (patch) | |
tree | d57cf6c4e614a418b76102fa095062502452259a /gcc | |
parent | 5bf6466a8fba2207bf3c5ee495b4529497f773cb (diff) | |
download | gcc-6318808ce5898bcdf34c47691283e6493f6a7133.zip gcc-6318808ce5898bcdf34c47691283e6493f6a7133.tar.gz gcc-6318808ce5898bcdf34c47691283e6493f6a7133.tar.bz2 |
define itrunc, uitrunc, and mcount macros without prepended underscores
From-SVN: r13907
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/aix31.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/config/rs6000/aix31.h b/gcc/config/rs6000/aix31.h index 644cee5..46bd03c 100644 --- a/gcc/config/rs6000/aix31.h +++ b/gcc/config/rs6000/aix31.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler, for IBM RS/6000 running AIX version 3.1. - Copyright (C) 1993 Free Software Foundation, Inc. + Copyright (C) 1993,1997 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@nyu.edu) This file is part of GNU CC. @@ -30,3 +30,12 @@ Boston, MA 02111-1307, USA. */ /* AIX 3.1 uses bit 15 in CROR as the magic nop. */ #undef RS6000_CALL_GLUE #define RS6000_CALL_GLUE "cror 15,15,15" + +/* AIX 3.1 does not prepend underscores to itrunc, uitrunc, or mcount. */ +#undef RS6000_ITRUNC +#define RS6000_ITRUNC "itrunc" +#undef RS6000_UITRUNC +#define RS6000_UITRUNC "uitrunc" +#undef RS6000_MCOUNT +#define RS6000_MCOUNT ".mcount" + |