* sim-config.h (WITH_DEBUG): Provide default value of zero.
authorDavid Edelsohn <dje.gcc@gmail.com>
Thu, 17 Apr 1997 12:41:19 +0000 (12:41 +0000)
committerDavid Edelsohn <dje.gcc@gmail.com>
Thu, 17 Apr 1997 12:41:19 +0000 (12:41 +0000)
sim/common/ChangeLog
sim/common/sim-config.h

index 27e29153993036604363881bcd1bc725e04725a4..9ebf3e3bd53c36a0c1bb1f22fa333b95b4d3a086 100644 (file)
@@ -1,6 +1,7 @@
 Thu Apr 17 02:25:11 1997  Doug Evans  <dje@canuck.cygnus.com>
 
        * sim-options.c, sim-options.h: New files.
+       * sim-config.h (WITH_DEBUG): Provide default value of zero.
 
        * run.c (main): Check return value of sim_open.
 
index 1205920ab88f9fd1ca03f003eca4509deb2d3b6e..7278b3ba604907f4ff9a82bf1d24492e1e521985 100644 (file)
@@ -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 */
This page took 0.028526 seconds and 4 git commands to generate.