From aaceb81c032470d15f5b064f639f639fee3ad40d Mon Sep 17 00:00:00 2001 From: Jie Zhang Date: Tue, 23 May 2006 04:56:56 +0000 Subject: [PATCH] Commit the missing bits of my last patch. --- gas/config/tc-bfin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gas/config/tc-bfin.h b/gas/config/tc-bfin.h index 773030c..fb0c63c 100644 --- a/gas/config/tc-bfin.h +++ b/gas/config/tc-bfin.h @@ -52,9 +52,9 @@ extern bfd_boolean bfin_start_label PARAMS ((char *)); #define TC_EOL_IN_INSN(PTR) (bfin_eol_in_insn(PTR) ? 1 : 0) extern bfd_boolean bfin_eol_in_insn PARAMS ((char *)); -/* The instruction is permitted to contain an = character. */ -#define TC_EQUAL_IN_INSN(C, NAME) (bfin_name_is_register (NAME) ? 1 : 0) -extern bfd_boolean bfin_name_is_register PARAMS ((char *)); +/* Almost all instructions of Blackfin contain an = character. */ +#define TC_EQUAL_IN_INSN(C, NAME) 1 + #define NOP_OPCODE 0x0000 #define LOCAL_LABELS_FB 1 -- 2.7.4