* as.c: Remove -t option.
* configure, configure.in: Move itbl-cpu.h to mips specific configure. * itbl-ops.h: Include itbl-cpu.h only if HAVE_ITBL_CPU is defined. * config/tc-mips.h: Define HAVE_ITBL_CPU.
This commit is contained in:
parent
40ac16240a
commit
72797ffaa0
3 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
Mon Feb 24 01:04:00 1997 Dawn Perchik <dawn@cygnus.com>
|
||||
|
||||
* as.c: Remove -t option.
|
||||
* configure, configure.in: Move itbl-cpu.h to mips specific configure.
|
||||
* itbl-ops.h: Include itbl-cpu.h only if HAVE_ITBL_CPU is defined.
|
||||
* config/tc-mips.h: Define HAVE_ITBL_CPU.
|
||||
|
||||
Sun Feb 23 18:01:00 1997 Dawn Perchik <dawn@cygnus.com>
|
||||
|
||||
* itbl-ops.c: Don't define DEBUG.
|
||||
|
|
2
gas/as.c
2
gas/as.c
|
@ -143,7 +143,7 @@ Options:\n\
|
|||
--statistics print various measured statistics from execution\n\
|
||||
--version print assembler version number and exit\n\
|
||||
-W suppress warnings\n\
|
||||
-t,--itbl INSTTBL extend instruction set to include instructions\n\
|
||||
--itbl INSTTBL extend instruction set to include instructions\n\
|
||||
matching the specifications defined in file INSTTBL\n\
|
||||
-w ignored\n\
|
||||
-X ignored\n\
|
||||
|
|
|
@ -21,7 +21,10 @@
|
|||
/* External functions, constants and defines for itbl support */
|
||||
|
||||
#include "ansidecl.h"
|
||||
#include "targ-cpu.h"
|
||||
#ifdef HAVE_ITBL_CPU
|
||||
#include "itbl-cpu.h"
|
||||
#endif
|
||||
|
||||
/* Defaults for definitions required by generic code */
|
||||
#ifndef ITBL_NUMBER_OF_PROCESSORS
|
||||
|
|
Loading…
Reference in a new issue