aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-02-24 23:30:59 +0000
committerKen Raeburn <raeburn@cygnus>1993-02-24 23:30:59 +0000
commit162e34854c1bdce47b6476bcfcc49ca1ac96b13c (patch)
treefd6ac470c1a65925ab49aedb114f19d91ec6355f /gas
parent160b7f0fef70682bbde2d83408b782734abcb949 (diff)
downloadgdb-162e34854c1bdce47b6476bcfcc49ca1ac96b13c.zip
gdb-162e34854c1bdce47b6476bcfcc49ca1ac96b13c.tar.gz
gdb-162e34854c1bdce47b6476bcfcc49ca1ac96b13c.tar.bz2
(s_xword): Now accepts large integer constants, but not symbolic constants
or expressions.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-sparc.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c
index 861ce33..147ca5b 100644
--- a/gas/config/tc-sparc.c
+++ b/gas/config/tc-sparc.c
@@ -451,8 +451,7 @@ s_proc ()
static void
s_xword ()
{
- md_number_to_chars (frag_more (4), 0, 4);
- cons (4);
+ big_cons (8);
}
struct priv_reg_entry
@@ -2221,13 +2220,15 @@ print_insn (insn)
* warnings.
*
* start-sanitize-v9
+ * -Av9
+ * Another architecture switch.
+ *
+ * Note:
* Bumping between incompatible architectures is always an
* error. For example, from sparclite to v9.
* end-sanitize-v9
*/
-/* start-sanitize-v9 */
-/* There is also a -Av9 architecture option. xoxorich. */
-/* end-sanitize-v9 */
+
int
md_parse_option (argP, cntP, vecP)
char **argP;