From 5fda40b28fb6ed86d76af1af68f61f3c016d3a26 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 13 Jan 2021 22:14:10 -0500 Subject: gas: make [248]byte directives available everywhere These aren't specific to ELF at all, and seem generally useful. So pull them out of the ELF backend and into the common core. --- gas/read.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gas/read.c') diff --git a/gas/read.c b/gas/read.c index be6e3e0..06ca7fb 100644 --- a/gas/read.c +++ b/gas/read.c @@ -530,6 +530,9 @@ static const pseudo_typeS potable[] = { {"weakref", s_weakref, 0}, {"word", cons, 2}, {"zero", s_space, 0}, + {"2byte", cons, 2}, + {"4byte", cons, 4}, + {"8byte", cons, 8}, {NULL, NULL, 0} /* End sentinel. */ }; -- cgit v1.1