aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-02-06 16:00:21 +0000
committerNathan Sidwell <nathan@codesourcery.com>2004-02-06 16:00:21 +0000
commite4475e391f7e5f113775573a822acb55612ddbb7 (patch)
treeae5e6c54833e64f819f1b21706cd34e6f6ae6814 /gas/read.c
parente4937fc1bb2a361a423e302630eb73b83b12aba8 (diff)
downloadfsf-binutils-gdb-e4475e391f7e5f113775573a822acb55612ddbb7.zip
fsf-binutils-gdb-e4475e391f7e5f113775573a822acb55612ddbb7.tar.gz
fsf-binutils-gdb-e4475e391f7e5f113775573a822acb55612ddbb7.tar.bz2
.:
* dwarf2dbg.c (DWARF2_ADDR_SIZE): Remove trailing ';' * read.h (SKIP_WHITESPACE): Turn into an expression. * read.c (read_a_source_file): A pseudo is removed by having a NULL handler. testsuite: * gas/macros/test2.s: Lowercase it.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/read.c b/gas/read.c
index b156b1c..b8bc536 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -754,6 +754,8 @@ read_a_source_file (char *name)
if (pop == NULL)
pop = (pseudo_typeS *) hash_find (po_hash, s + 1);
+ if (pop && !pop->poc_handler)
+ pop = NULL;
/* In MRI mode, we may need to insert an
automatic alignment directive. What a hack