diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-28 19:58:24 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-28 19:58:24 +0000 |
commit | 359e408d73f1088b80709eebf420fa854449b7c8 (patch) | |
tree | 627990e3a3942dae74f4cecab49c150bac528480 /gcc/config/rs6000/sol2.h | |
parent | 57ed72532034e6376b2094ce11d974f9af2a0db6 (diff) | |
download | gcc-359e408d73f1088b80709eebf420fa854449b7c8.tar.gz |
Fix problems in float/int conversion in inline functions
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000/sol2.h')
-rw-r--r-- | gcc/config/rs6000/sol2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/config/rs6000/sol2.h b/gcc/config/rs6000/sol2.h index 9ed7ac23c64..357e21cbc33 100644 --- a/gcc/config/rs6000/sol2.h +++ b/gcc/config/rs6000/sol2.h @@ -21,6 +21,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "rs6000/sysv4le.h" +/* Default ABI to use */ +#undef RS6000_ABI_NAME +#define RS6000_ABI_NAME "solaris" + #undef CPP_PREDEFINES #define CPP_PREDEFINES \ "-Dsun=1 -Dunix -D__svr4__ -DSVR4 -DPPC \ @@ -82,6 +86,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG +#if 0 #undef ASM_OUTPUT_ALIGNED_LOCAL #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \ do { \ @@ -89,7 +94,7 @@ do { \ assemble_name ((FILE), (NAME)); \ fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT); \ } while (0) - +#endif /* Like block addresses, stabs line numbers are relative to the current function. */ |