Merge remote-tracking branch 'origin/master' into amd-common
[deliverable/binutils-gdb.git] / gas / read.c
index fa72d847cd8c507d87ce16fc20315cefc9f1e3e2..bf594f12a2dd3341998f63ab1a8e1bfaeea9a542 100644 (file)
@@ -5435,8 +5435,9 @@ next_char_of_string (void)
       bump_line_counters ();
       break;
 
-#ifndef NO_STRING_ESCAPES
     case '\\':
+      if (!TC_STRING_ESCAPES)
+       break;
       switch (c = *input_line_pointer++ & CHAR_MASK)
        {
        case 'b':
@@ -5538,7 +5539,6 @@ next_char_of_string (void)
          break;
        }
       break;
-#endif /* ! defined (NO_STRING_ESCAPES) */
 
     default:
       break;
This page took 0.032753 seconds and 4 git commands to generate.