aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-02-09 12:12:42 +0000
committerNathan Sidwell <nathan@codesourcery.com>2004-02-09 12:12:42 +0000
commita8a3b3b21c1b0195b059191a55cc8c8a7703d858 (patch)
treee4992c203bb9a3924097e036c9ab086a4cee9285 /gas/read.c
parentd2dc51dbff4bd6804d6f35f335a9dc0ae0a93253 (diff)
downloadfsf-binutils-gdb-a8a3b3b21c1b0195b059191a55cc8c8a7703d858.zip
fsf-binutils-gdb-a8a3b3b21c1b0195b059191a55cc8c8a7703d858.tar.gz
fsf-binutils-gdb-a8a3b3b21c1b0195b059191a55cc8c8a7703d858.tar.bz2
* read.h (IGNORE_OPCODE_CASE): Do not define. Replace with ...
(TC_CASE_SENSITIVE): ... this. * read.c: Replace IGNORE_OPCODE_CASE with TC_CASE_SENSITIVE. * doc/internals.texi (TC_CASE_SENSITIVE): Document.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/read.c b/gas/read.c
index b8bc536..82c0434 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -155,7 +155,7 @@ char is_end_of_line[256] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */
};
-#ifdef IGNORE_OPCODE_CASE
+#ifndef TC_CASE_SENSITIVE
char original_case_string[128];
#endif
@@ -720,7 +720,7 @@ read_a_source_file (char *name)
/* Expect pseudo-op or machine instruction. */
pop = NULL;
-#ifdef IGNORE_OPCODE_CASE
+#ifndef TC_CASE_SENSITIVE
{
char *s2 = s;