From: Ian Lance Taylor Date: Tue, 30 Jan 1996 18:32:39 +0000 (+0000) Subject: Don't include . Don't compare strchr result to NULL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b107aaf90e6e324b3de872fdbf04067a81ce574b;p=gcc.git Don't include . Don't compare strchr result to NULL. From-SVN: r11125 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 256d1aa1174..3ff1a2ca0c6 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -70,7 +70,6 @@ Boston, MA 02111-1307, USA. */ /* Include these first, because they may define MIN and MAX. */ #include #include -#include #include "config.h" #include "tree.h" @@ -932,7 +931,7 @@ dbxout_type_methods (type) #else marker = '.'; #endif - if (strchr (debug_name, marker) != NULL) + if (strchr (debug_name, marker)) show_arg_types = 1; /* Detect ordinary methods because their mangled names start with the operation name. */