diff options
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 2390ee4..7d20f1c 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -291,8 +291,7 @@ stringify_arg (pfile, arg) unsigned int len = cpp_token_len (token); escape_it = (token->type == CPP_STRING || token->type == CPP_WSTRING - || token->type == CPP_CHAR || token->type == CPP_WCHAR - || token->type == CPP_OSTRING); + || token->type == CPP_CHAR || token->type == CPP_WCHAR); if (escape_it) /* Worst case is each char is octal. */ |