diff options
author | Anthony Green <green@moxielogic.com> | 2015-01-10 10:16:53 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2015-01-10 10:16:53 +0000 |
commit | b10b03c4c0f7ea394424d3a76106cb41de3f731c (patch) | |
tree | d60f6be5dcea1d60278edec672f8a59496db4d45 /gcc | |
parent | 6085e66e950e9b5666e5018ed3b178cbd3b3a6a5 (diff) | |
download | gcc-b10b03c4c0f7ea394424d3a76106cb41de3f731c.zip gcc-b10b03c4c0f7ea394424d3a76106cb41de3f731c.tar.gz gcc-b10b03c4c0f7ea394424d3a76106cb41de3f731c.tar.bz2 |
Fix mul.x flag for moxie
From-SVN: r219422
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/moxie/moxie.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ca3114..15a47fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-01-10 Anthony Green <green@moxielogic.com> + + * config/moxie/moxie.c (moxie_option_override): Fix forcing of + mul.x availability for moxiebox configuration. + 2015-01-09 Anthony Green <green@moxielogic.com> * config/moxie/moxie.md: Tabify assembly output. diff --git a/gcc/config/moxie/moxie.c b/gcc/config/moxie/moxie.c index 08e90b9..c178777 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 } |