aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-01-04 21:48:44 +0000
committerKen Raeburn <raeburn@cygnus>1993-01-04 21:48:44 +0000
commitdb81c5e7d5f9e90fa76f8783d25142976e842bdc (patch)
tree6f336dd9b5f49eb12cd0e4648e296eea44b454b3 /gas
parent06137fcb39050b754f71835da1f4ac24d3e08c41 (diff)
downloadgdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.zip
gdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.tar.gz
gdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.tar.bz2
fix goof from last change
Diffstat (limited to 'gas')
-rw-r--r--gas/read.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/read.c b/gas/read.c
index 1df4369..d780cfc 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -817,7 +817,11 @@ s_data ()
register int temp;
temp = get_absolute_expression ();
+#ifdef BFD_ASSEMBLER
subseg_set (data_section, (subsegT) temp);
+#else
+ subseg_change (data_section, (subsegT) temp);
+#endif
#ifdef VMS
const_flag = 0;