diff options
author | Alan Modra <amodra@gmail.com> | 2000-02-24 01:56:31 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-02-24 01:56:31 +0000 |
commit | abd63a324ba0be30ce0f6287400984b5a4560099 (patch) | |
tree | f632d3f6373483c5f545e66f8e479afbaeef86bb /gas/cond.c | |
parent | b5ebe70e6edf1e912248bbd98afb3ee7633a6348 (diff) | |
download | gdb-abd63a324ba0be30ce0f6287400984b5a4560099.zip gdb-abd63a324ba0be30ce0f6287400984b5a4560099.tar.gz gdb-abd63a324ba0be30ce0f6287400984b5a4560099.tar.bz2 |
Remove dead code when not TC_M68K.
Diffstat (limited to 'gas/cond.c')
-rw-r--r-- | gas/cond.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,5 +1,5 @@ /* cond.c - conditional assembly pseudo-ops, and .include - Copyright (C) 1990, 91, 92, 93, 95, 96, 97, 98, 1999 + Copyright (C) 1990, 91, 92, 93, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -452,11 +452,7 @@ ignore_input () s = input_line_pointer; - if (flag_m68k_mri -#ifdef NO_PSEUDO_DOT - || 1 -#endif - ) + if (NO_PSEUDO_DOT || flag_m68k_mri) { if (s[-1] != '.') --s; |