diff options
author | Doug Evans <dje@google.com> | 1998-01-30 12:10:00 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1998-01-30 12:10:00 +0000 |
commit | 08847198d5604f4ed511547c7fde82738dd9e8ea (patch) | |
tree | fbb79c6417f4ed0f37df5be002b34cd8e323885c /gas | |
parent | fe9efeb6d96d5591645510136d19c33f046927d9 (diff) | |
download | gdb-08847198d5604f4ed511547c7fde82738dd9e8ea.zip gdb-08847198d5604f4ed511547c7fde82738dd9e8ea.tar.gz gdb-08847198d5604f4ed511547c7fde82738dd9e8ea.tar.bz2 |
fix typo in last change
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-dvp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gas/config/tc-dvp.c b/gas/config/tc-dvp.c index 7cec9af..90aa112 100644 --- a/gas/config/tc-dvp.c +++ b/gas/config/tc-dvp.c @@ -72,9 +72,9 @@ static int dma_pack_pke_p; /* Non-zero if dma insns are to be included in the output. This is the default, but writing "if (! no_dma)" is klunky. */ -static int output_dma; +static int output_dma = 1; /* Non-zero if pke insns are to be included in the output. */ -static int output_pke; +static int output_pke = 1; const char *md_shortopts = ""; @@ -82,7 +82,7 @@ struct option md_longopts[] = { #define OPTION_NO_DMA (OPTION_MD_BASE + 1) { "no-dma", no_argument, NULL, OPTION_NO_DMA }, -#define OPTION_NO_PKE (OPTION_NO_DMA_PKE + 1) +#define OPTION_NO_DMA_PKE (OPTION_NO_DMA + 1) { "no-dma-pke", no_argument, NULL, OPTION_NO_DMA_PKE }, {NULL, no_argument, NULL, 0} @@ -168,8 +168,6 @@ md_begin () cur_asm_state = ASM_INIT; dma_pack_pke_p = 0; - output_dma = 1; - output_pke = 1; } /* We need to keep a list of fixups. We can't simply generate them as |