diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1997-04-17 12:41:19 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1997-04-17 12:41:19 +0000 |
commit | 4b364b00cfb153d2371dc0b9f74d29dec432dbb6 (patch) | |
tree | 3f59648ba2bf4ef509fa58ddb3502af5dfca4987 /sim/common/sim-config.h | |
parent | 4ede3a832bf3df431b42d153e70921b3bc81eabc (diff) | |
download | gdb-4b364b00cfb153d2371dc0b9f74d29dec432dbb6.zip gdb-4b364b00cfb153d2371dc0b9f74d29dec432dbb6.tar.gz gdb-4b364b00cfb153d2371dc0b9f74d29dec432dbb6.tar.bz2 |
* sim-config.h (WITH_DEBUG): Provide default value of zero.
Diffstat (limited to 'sim/common/sim-config.h')
-rw-r--r-- | sim/common/sim-config.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sim/common/sim-config.h b/sim/common/sim-config.h index 1205920..7278b3b 100644 --- a/sim/common/sim-config.h +++ b/sim/common/sim-config.h @@ -416,7 +416,13 @@ extern int current_floating_point; /* Debugging: - Control the inclusion of debugging code. */ + Control the inclusion of debugging code. + Debugging is only turned on in rare circumstances [say during development] + and is not intended to be turned on otherwise. */ + +#ifndef WITH_DEBUG +#define WITH_DEBUG 0 +#endif /* Include the tracing code. Disabling this eliminates all tracing code */ |