diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-08-18 00:45:29 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-08-18 00:45:29 -0600 |
commit | 6641552950fb9953d2d2032beb7c42b0414d5b1d (patch) | |
tree | 828a5aaa22cd7de30491ce8da5f29ba5faea21d0 | |
parent | 7b0ba51e9b9b8038d5a61cc6efcc4f1ccd6c1bcf (diff) | |
download | gcc-6641552950fb9953d2d2032beb7c42b0414d5b1d.zip gcc-6641552950fb9953d2d2032beb7c42b0414d5b1d.tar.gz gcc-6641552950fb9953d2d2032beb7c42b0414d5b1d.tar.bz2 |
* pa.h (TARGET_KERNEL): Delete switch and all references to it.
From-SVN: r5177
-rw-r--r-- | gcc/config/pa/pa.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 97c7d22..38f12c6 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -47,13 +47,6 @@ extern int target_flags; #define TARGET_DISABLE_FPREGS (target_flags & 2) -/* Force gcc to only use instructions which are safe when compiling kernels. - Specifically, avoid using add instructions with dp (r27) as an argument. - Use addil instructions instead. Doing so avoids a nasty bug in the - HPUX linker. When HP fixes their linker take this option out. */ - -#define TARGET_KERNEL (target_flags & 4) - /* Allow unconditional jumps in the delay slots of call instructions. */ #define TARGET_JUMP_IN_DELAY (target_flags & 8) @@ -93,8 +86,6 @@ extern int target_flags; {"pa-risc-1-1", 1}, \ {"disable-fpregs", 2}, \ {"no-disable-fpregs", 2}, \ - {"kernel", 4}, \ - {"no-kernel", -4}, \ {"jump-in-delay", 8}, \ {"no-jump-in-delay", -8}, \ {"long-calls", 16}, \ |