From: Anthony Green Date: Sat, 10 Jan 2015 10:16:53 +0000 (+0000) Subject: Fix mul.x flag for moxie X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b10b03c4c0f7ea394424d3a76106cb41de3f731c;p=gcc.git Fix mul.x flag for moxie From-SVN: r219422 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ca31141ee8..15a47fc9c50 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-01-10 Anthony Green + + * config/moxie/moxie.c (moxie_option_override): Fix forcing of + mul.x availability for moxiebox configuration. + 2015-01-09 Anthony Green * config/moxie/moxie.md: Tabify assembly output. diff --git a/gcc/config/moxie/moxie.c b/gcc/config/moxie/moxie.c index 08e90b908d2..c178777d4dc 100644 --- a/gcc/config/moxie/moxie.c +++ b/gcc/config/moxie/moxie.c @@ -262,7 +262,7 @@ moxie_option_override (void) init_machine_status = moxie_init_machine_status; #ifdef TARGET_MOXIEBOX - target_flags &= ~MASK_HAS_MULX; + target_flags |= MASK_HAS_MULX; #endif }