aboutsummaryrefslogtreecommitdiff
path: root/gas/config/bfin-lex.l
diff options
context:
space:
mode:
authorJie Zhang <jie.zhang@analog.com>2005-10-24 16:31:22 +0000
committerJie Zhang <jie.zhang@analog.com>2005-10-24 16:31:22 +0000
commit9ba4c445137e7c387090441e2837e09479f14457 (patch)
treec7ac22c3e48116f1357a8d55004de349893373b0 /gas/config/bfin-lex.l
parentf470759536919310535044dde07b70f850fe675c (diff)
downloadgdb-9ba4c445137e7c387090441e2837e09479f14457.zip
gdb-9ba4c445137e7c387090441e2837e09479f14457.tar.gz
gdb-9ba4c445137e7c387090441e2837e09479f14457.tar.bz2
bfd/
* elf32-bfin.c (bfd_bfin_elf32_create_embedded_relocs): Fix signedness warning. gas/ * Makefile.am (bfin-parse.h): Renamed from bfin-parse.tab.h. (EXTRA_DIST): Add bfin-parse.h and bfin-lex.c. * Makefile.in: Regenerate. * config/bfin-lex.l: Include bfin-parse.h instead of bfin-parse.tab.h. * config/tc-bfin.c (md_chars_to_number): Change the type of first argument from unsigned char * to char * to remove signedness warnings.
Diffstat (limited to 'gas/config/bfin-lex.l')
-rw-r--r--gas/config/bfin-lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/bfin-lex.l b/gas/config/bfin-lex.l
index df65035..c3af842 100644
--- a/gas/config/bfin-lex.l
+++ b/gas/config/bfin-lex.l
@@ -23,7 +23,7 @@
#include <stdlib.h>
#include <string.h>
#include "bfin-defs.h"
-#include "bfin-parse.tab.h"
+#include "bfin-parse.h"
#include "as.h"
static long parse_int (char **end);