diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-26 00:04:54 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-26 00:04:54 +0000 |
commit | d4102c12afa85624488bb56edb33c6e7d36a85a1 (patch) | |
tree | 0af4161ceb0c95b5311d99c7ff567aa135e1a043 /gcc/config/pa/pa-hpux10.h | |
parent | b45c5e7f61a8f4f75d6b65694a2f7a0003513bbf (diff) | |
download | gcc-d4102c12afa85624488bb56edb33c6e7d36a85a1.tar.gz |
* pa/pa-hpux.h, pa/pa-hpux10.h, pa/pa-hpux9.h, pa/pa-osf.h, pa.h,
pa.c, pa.md, configure.in, configure: Replace TARGET_SNAKE by
TARGET_PA_11 and MASK_SNAKE by MASK_PA_11.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26630 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/pa/pa-hpux10.h')
-rw-r--r-- | gcc/config/pa/pa-hpux10.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa-hpux10.h b/gcc/config/pa/pa-hpux10.h index 5050f24f4c8..ec56cc67581 100644 --- a/gcc/config/pa/pa-hpux10.h +++ b/gcc/config/pa/pa-hpux10.h @@ -22,7 +22,7 @@ Boston, MA 02111-1307, USA. */ /* We can debug dynamically linked executables on hpux9; we also want dereferencing of a NULL pointer to cause a SEGV. */ #undef LINK_SPEC -#if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_SNAKE) +#if ((TARGET_DEFAULT | TARGET_CPU_DEFAULT) & MASK_PA_11) #define LINK_SPEC \ "%{!mpa-risc-1-0:%{!shared:-L/lib/pa1.1 -L/usr/lib/pa1.1 }} -z %{mlinker-opt:-O} %{!shared:-u main} %{static:-a archive} %{shared:-b}" #else @@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */ #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ do { \ - if (TARGET_SNAKE) \ + if (TARGET_PA_11) \ fputs("\t.LEVEL 1.1\n", FILE); \ else \ fputs("\t.LEVEL 1.0\n", FILE); \ |