diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-26 04:37:08 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-26 04:37:08 +0000 |
commit | 9bb30354733b427e658ea2541d6494cce80b8b71 (patch) | |
tree | 2eae331dd91c7855753c4d64f76fa4340141fca6 | |
parent | d575f110ff85d748791a9e9e60f1b02a9b2b4ca3 (diff) | |
download | gcc-9bb30354733b427e658ea2541d6494cce80b8b71.zip gcc-9bb30354733b427e658ea2541d6494cce80b8b71.tar.gz gcc-9bb30354733b427e658ea2541d6494cce80b8b71.tar.bz2 |
(ASM_SPEC): If -noasmopt, pass -O0.
From-SVN: r4573
-rw-r--r-- | gcc/config/mips/iris3.h | 1 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/mips/iris3.h b/gcc/config/mips/iris3.h index 8ed23a7..0e7785a 100644 --- a/gcc/config/mips/iris3.h +++ b/gcc/config/mips/iris3.h @@ -45,6 +45,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{!mrnames: %{!.s:-nocpp} %{.s: %{cpp} %{nocpp}}} \ %{pipe: %e-pipe is not supported.} \ %{mips1} %{mips2} %{mips3} \ + %{noasmopt:-O0} \ %{!noasmopt:%{O:-O2} %{O1:-O2} %{O2:-O2} %{O3:-O3}} \ %{g} %{g0} %{g1} %{g2} %{g3} %{v} %{K} \ %{ggdb:-g} %{ggdb0:-g0} %{ggdb1:-g1} %{ggdb2:-g2} %{ggdb3:-g3} \ diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 5a25fff..3a21620 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -549,6 +549,7 @@ while (0) %{EB} %{!EB:-EB} \ %{EL: %e-EL not supported} \ %{mips1} %{mips2} %{mips3} \ + %{noasmopt:-O0} \ %{!noasmopt:%{O:-O2} %{O1:-O2} %{O2:-O2} %{O3:-O3}} \ %{g} %{g0} %{g1} %{g2} %{g3} %{v} %{K} \ %{ggdb:-g} %{ggdb0:-g0} %{ggdb1:-g1} %{ggdb2:-g2} %{ggdb3:-g3} \ |