diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-04-02 21:53:46 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-04-02 21:53:46 +0000 |
commit | 3640d4657f813ab4a51293a1d59ebfe9669a700d (patch) | |
tree | d41255c101b8b16a92fb5c802c4ca78dfa3de9a8 | |
parent | 8b94f1180ecc3d49e94bb497fa0e8f41b0b8a5fd (diff) | |
download | gdb-gdb-csl-available-20060303-branch.zip gdb-gdb-csl-available-20060303-branch.tar.gz gdb-gdb-csl-available-20060303-branch.tar.bz2 |
Turn off debugging messages from the parser.gdb-csl-available-20060303-branch
-rw-r--r-- | gdb/parse-avail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/parse-avail.c b/gdb/parse-avail.c index b751e00..2c56fcb 100644 --- a/gdb/parse-avail.c +++ b/gdb/parse-avail.c @@ -411,14 +411,14 @@ xml_feature_start_element (void *data_, const XML_Char *name, if (data->state->phase == PHASE_UNKNOWN) { -#if 1 +#if 0 fprintf_unfiltered (gdb_stderr, "skipping, name %s\n", name); #endif data->state->u.unknown.depth++; return; } -#if 1 +#if 0 fprintf_unfiltered (gdb_stderr, "entering, name %s\n", name); for (p = attrs; *p; p += 2) fprintf_unfiltered (gdb_stderr, " attr %s=\"%s\"\n", p[0], p[1]); @@ -580,7 +580,7 @@ xml_feature_end_element (void *data_, const XML_Char *name) struct gdb_available_feature *feature; struct gdb_available_register *reg; -#if 1 +#if 0 fprintf_unfiltered (gdb_stderr, "leaving, name %s\n", name); #endif |