summaryrefslogtreecommitdiffstats
path: root/gas/config
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>1994-11-22 18:29:07 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>1994-11-22 18:29:07 +0000
commit3a443b1efe0784b644237e954a8429bfbf387f9a (patch)
tree46bc6990add487fd846792ffa5685d444f6c5de2 /gas/config
parent18368f46c448826cdf3284546f55deb40683b636 (diff)
downloadppe42-binutils-3a443b1efe0784b644237e954a8429bfbf387f9a.tar.gz
ppe42-binutils-3a443b1efe0784b644237e954a8429bfbf387f9a.zip
* config/tc-alpha.c (s_alpha_set): Ignore the .set (no)move and
.set (no)volatile directives.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-alpha.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 2b82dd7e3d..3453e65704 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -1244,8 +1244,7 @@ alpha_ip (str, insns)
break;
default:
- as_warn ("Unknown opcode: `%s'", str);
- exit (1);
+ as_fatal ("Unknown opcode: `%s'", str);
}
if ((pattern = (struct alpha_opcode *) hash_find (op_hash, str)) == NULL)
{
@@ -2357,6 +2356,10 @@ s_alpha_set (x)
at_ok = yesno;
else if (!strcmp ("macro", s))
macro_ok = yesno;
+ else if (!strcmp ("move", s))
+ /* ignore */ ;
+ else if (!strcmp ("volatile", s))
+ /* ignore */ ;
else
as_warn ("Tried to set unrecognized symbol: %s", name);
*input_line_pointer = ch;
OpenPOWER on IntegriCloud