From 8a5886591d116320bbb2df480386abe465a7c22b Mon Sep 17 00:00:00 2001 From: Matthew Green Date: Thu, 20 Dec 2001 07:34:44 +0000 Subject: [PATCH] * config/tc-ppc.c (md_parse_option): Make -maltivec default to generating PowerPC instructions. --- gas/ChangeLog | 5 +++++ gas/config/tc-ppc.c | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index bab084cb14c..dfea7813c84 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-12-20 matthew green + + * config/tc-ppc.c (md_parse_option): Make -maltivec default + to generating PowerPC instructions. + 2001-12-20 Jason Thorpe * configure.in (mips-dec-netbsd*): Delete. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index a3944084633..5ece16b0a27 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -897,7 +897,12 @@ md_parse_option (c, arg) || strcmp (arg, "7455") == 0) ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC; else if (strcmp (arg, "altivec") == 0) - ppc_cpu |= PPC_OPCODE_ALTIVEC; + { + if (ppc_cpu == 0) + ppc_cpu = PPC_OPCODE_PPC | PPC_OPCODE_ALTIVEC; + else + ppc_cpu |= PPC_OPCODE_ALTIVEC; + } /* -mppc64 and -m620 mean to assemble for the 64-bit PowerPC 620. */ else if (strcmp (arg, "ppc64") == 0 || strcmp (arg, "620") == 0) -- 2.30.2