aboutsummaryrefslogtreecommitdiff
path: root/gas/app.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-03-18 00:52:37 +0000
committerIan Lance Taylor <ian@airs.com>1993-03-18 00:52:37 +0000
commitf6a91cc0f7695aef3575c3d3cca397667a9f1027 (patch)
tree165bd74671321dca3cc613614fbe220a02f854d8 /gas/app.c
parentb17e0267c9a9979aaed40fe3a6178e78d025971c (diff)
downloadfsf-binutils-gdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.zip
fsf-binutils-gdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.tar.gz
fsf-binutils-gdb-f6a91cc0f7695aef3575c3d3cca397667a9f1027.tar.bz2
* app.c (do_scrub_next_char): Added new state, 9, to avoid
dropping a space immediately following an identifier. * expr.c, write.c: Rewrote assert expressions to not use multiple lines; I don't think that can be done portably. * config/tc-mips.c (macro): Use $AT if target register is zero in load instruction, which it can be for a floating point load. Also a bunch more changes to config/obj-ecoff.c, still in flux.
Diffstat (limited to 'gas/app.c')
-rw-r--r--gas/app.c48
1 files changed, 35 insertions, 13 deletions
diff --git a/gas/app.c b/gas/app.c
index ce75973..1983c3c 100644
--- a/gas/app.c
+++ b/gas/app.c
@@ -29,7 +29,6 @@
#include <stdio.h>
#include "as.h" /* For BAD_CASE() only */
-#include "read.h"
#if (__STDC__ != 1) && !defined(const)
#define const /* Nothing */
@@ -250,10 +249,18 @@ do_scrub_next_char (get, unget)
6: putting out \ escape in a "d string.
7: After putting out a .app-file, put out string.
8: After putting out a .app-file string, flush until newline.
+ 9: After seeing symbol char in state 3 (keep 1white after symchar)
-1: output string in out_string and go to the state in old_state
-2: flush text until a '*' '/' is seen, then go to state old_state
*/
+ /* I added state 9 because the MIPS ECOFF assembler uses constructs
+ like ``.loc 1 20''. This was turning into ``.loc 120''. State 9
+ ensures that a space is never dropped immediately following a
+ character which could appear in a identifier. It is still
+ dropped following a comma, so this has no effect for most
+ assemblers. I hope. Ian Taylor, ian@cygnus.com. */
+
register int ch, ch2 = 0;
switch (state)
@@ -399,7 +406,7 @@ do_scrub_next_char (get, unget)
return ch;
}
- /* OK, we are somewhere in states 0 through 4 */
+ /* OK, we are somewhere in states 0 through 4 or 9 */
/* flushchar: */
ch = (*get) ();
@@ -447,7 +454,8 @@ recycle:
case 1:
BAD_CASE (state); /* We can't get here */
case 2:
- state++;
+ case 9:
+ state = 3;
(*unget) (ch);
return ' '; /* Sp after opco */
case 3:
@@ -561,18 +569,22 @@ recycle:
goto de_fault;
/* FIXME-someday: The two character comment stuff was badly
- thought out. On i386, we want '/' as line comment start
- AND we want C style comments. hence this hack. The
- whole lexical process should be reworked. xoxorich. */
+ thought out. On i386, we want '/' as line comment start AND
+ we want C style comments. hence this hack. The whole
+ lexical process should be reworked. xoxorich. */
- if (ch == '/' && (ch2 = (*get) ()) == '*')
+ if (ch == '/')
{
- state = -2;
- return (do_scrub_next_char (get, unget));
- }
- else
- {
- (*unget) (ch2);
+ ch2 = (*get) ();
+ if (ch2 == '*')
+ {
+ state = -2;
+ return (do_scrub_next_char (get, unget));
+ }
+ else
+ {
+ (*unget) (ch2);
+ }
} /* bad hack */
do
@@ -609,6 +621,10 @@ recycle:
state = 0;
return '\n';
+ case LEX_IS_SYMBOL_COMPONENT:
+ if (state == 3)
+ state = 9;
+ /* Fall through. */
default:
de_fault:
/* Some relatively `normal' character. */
@@ -622,6 +638,12 @@ recycle:
state = 2; /* Ditto */
return ch;
}
+ else if (state == 9)
+ {
+ if (lex[ch] != LEX_IS_SYMBOL_COMPONENT)
+ state = 3;
+ return ch;
+ }
else
{
return ch; /* Opcode or operands already */