aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-v850.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c
index 2af88ad..724030b 100644
--- a/gas/config/tc-v850.c
+++ b/gas/config/tc-v850.c
@@ -853,13 +853,14 @@ md_parse_option (c, arg)
if (strcmp (arg, "v850") == 0)
{
machine = 0;
+ processor_mask = PROCESSOR_V850;
return 1;
}
/* start-sanitize-v850e */
else if (strcmp (arg, "v850e") == 0)
{
machine = bfd_mach_v850e;
- processor_mask = PROCESSOR_V850 | PROCESSOR_V850E;
+ processor_mask = PROCESSOR_V850E;
return 1;
}