diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-06-10 21:35:13 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-06-10 21:35:13 +0000 |
commit | 84be4d71176e648dfed2424cc66bf277d3d2ce82 (patch) | |
tree | 6788495b8d204ce1f633ef3767c45d43cb68ab07 | |
parent | f5f9cc4ffbad5ae89010e2cf6804ee887339d8c9 (diff) | |
download | gdb-84be4d71176e648dfed2424cc66bf277d3d2ce82.zip gdb-84be4d71176e648dfed2424cc66bf277d3d2ce82.tar.gz gdb-84be4d71176e648dfed2424cc66bf277d3d2ce82.tar.bz2 |
* as.c: If HAVE_ITBL_CPU, include "itbl-ops.h".
-rw-r--r-- | gas/as.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -44,7 +44,9 @@ #include "sb.h" #include "macro.h" -#ifndef HAVE_ITBL_CPU +#ifdef HAVE_ITBL_CPU +#include "itbl-ops.h" +#else #define itbl_parse(itbl_file) 1 #define itbl_init() #endif |