* doc/sdccman.lyx, src/SDCCmain.c, src/SDCCglobal.h, src/ds390/gen.c,
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Apr 2007 20:11:37 +0000 (20:11 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Apr 2007 20:11:37 +0000 (20:11 +0000)
  src/hc08/gen.c, src/mcs51/gen.c, src/mcs51/rtrack.c:
  fixed #1493816: option --no-gen-comments: --no-gen-comments renamed
  to --fverbose-asm, to be gcc'ish

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4754 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
doc/sdccman.lyx
src/SDCCglobl.h
src/SDCCmain.c
src/ds390/gen.c
src/hc08/gen.c
src/mcs51/gen.c
src/mcs51/rtrack.c

index 93ba830c6a360c86a684af520cef27a4ce324429..1545674428be838a8a5ec7c0b8260d968a0b8719 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,7 +3,7 @@
        * doc/sdccman.lyx, src/SDCCmain.c, src/SDCCglobal.h, src/ds390/gen.c,
          src/hc08/gen.c, src/mcs51/gen.c, src/mcs51/rtrack.c:
          fixed #1493816: option --no-gen-comments: --no-gen-comments renamed
-         to --fno-verbose-asm, to be gcc'ish
+         to --fverbose-asm, to be gcc'ish
 
 2007-04-17 Maarten Brock <sourceforge.brock AT dse.nl>
 
index 616b26d3f6da5aae3fbb7448f4d4cc4e3731e097..3026c0acc6830265d4f2feb0a223a11703a5e76d 100644 (file)
@@ -9657,14 +9657,14 @@ status collapsed
 
 \end_inset
 
--no-verbose-asm
+-verbose-asm
 \begin_inset LatexCommand \index{-\/-no-gen-comments}
 
 \end_inset
 
 
 \series default
Will not include code generator comments in the generated files.
Include code generator comments in the generated asm files.
 \end_layout
 
 \begin_layout List
index 53146665d764fed2f2e3833112a9866f1fa5bb46..a85be4b76d140dc9234109f314293eae604c89ec 100644 (file)
@@ -279,7 +279,7 @@ struct options
     int noCcodeInAsm;           /* hide c-code from asm */
     int iCodeInAsm;             /* show i-code in asm */
     int noPeepComments;         /* hide peephole optimizer comments */
-    int noVerboseAsm;           /* hide comments generated with gen.c */
+    int verboseAsm;             /* include comments generated with gen.c */
     int printSearchDirs;        /* display the directories in the compiler's search path */
     int vc_err_style;           /* errors and warnings are compatible with Micro$oft visual studio */
     int use_stdout;             /* send errors to stdout instead of stderr */
index a418d6fb76c90804af04665e694386efc3b2b7fd..e1cac49bf90239a2e66b0de85ded5db35eb8e738 100644 (file)
@@ -135,7 +135,7 @@ char buffer[PATH_MAX * 2];
 #define OPTION_PACK_IRAM        "--pack-iram"
 #define OPTION_NO_PACK_IRAM     "--no-pack-iram"
 #define OPTION_NO_PEEP_COMMENTS "--no-peep-comments"
-#define OPTION_NO_VERBOSE_ASM   "--fno-verbose-asm"
+#define OPTION_VERBOSE_ASM      "--fverbose-asm"
 #define OPTION_OPT_CODE_SPEED   "--opt-code-speed"
 #define OPTION_OPT_CODE_SIZE    "--opt-code-size"
 #define OPTION_STD_C89          "--std-c89"
@@ -220,7 +220,7 @@ optionsTable[] = {
     { 0,    OPTION_NO_XINIT_OPT,    &options.noXinitOpt, "don't memcpy initialized xram from code"},
     { 0,    OPTION_NO_CCODE_IN_ASM, &options.noCcodeInAsm, "don't include c-code as comments in the asm file"},
     { 0,    OPTION_NO_PEEP_COMMENTS, &options.noPeepComments, "don't include peephole optimizer comments"},
-    { 0,    OPTION_NO_VERBOSE_ASM,   &options.noVerboseAsm, "don't include code generator comments"},
+    { 0,    OPTION_VERBOSE_ASM,   &options.verboseAsm, "don't include code generator comments"},
 #if !OPT_DISABLE_Z80 || !OPT_DISABLE_GBZ80
     { 0,    "--no-std-crt0", &options.no_std_crt0, "For the z80/gbz80 do not link default crt0.o"},
 #endif
index 98b513ff79614421554a1b0892ee21191b0749c8..3e1f045c6b281c484938575cbbaf465ddb0649ca 100644 (file)
@@ -26,7 +26,7 @@
 -------------------------------------------------------------------------*/
 
 //#define D(x)
-#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
+#define D(x) do if (options.verboseAsm) {x;} while(0)
 
 #include <stdio.h>
 #include <stdlib.h>
index 23084dfe6cd84dfe28d6dc5d82713cdbfc6ab9cd..388d2ab95c93305a277fc0d68b3ae5a95e5f2e46 100644 (file)
@@ -28,7 +28,7 @@
 -------------------------------------------------------------------------*/
 
 /* Use the D macro for basic (unobtrusive) debugging messages */
-#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
+#define D(x) do if (options.verboseAsm) {x;} while(0)
 /* Use the DD macro for detailed debugging messages */
 #define DD(x)
 //#define DD(x) x
index a84e29660b9f44d963f6e45c038bffd562340a71..f99fa6a02ea9df804a4b1f832b1a0f15869fc0b2 100644 (file)
@@ -28,7 +28,7 @@
       Made everything static
 -------------------------------------------------------------------------*/
 
-#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
+#define D(x) do if (options.verboseAsm) {x;} while(0)
 
 #include <stdio.h>
 #include <stdlib.h>
index 66ea17e4136e3f2d331ed5a593023a1431f44592..2d0212dec8de951e4fecaf16ec5bd841839f7de9 100644 (file)
@@ -46,7 +46,7 @@
 #define DEBUG(x)
 //#define DEBUG(x) x
 
-#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
+#define D(x) do if (options.verboseAsm) {x;} while(0)
 
 #define REGS8051_SET(idx,val) do{ \
                                   regs8051[idx].value = (val) & 0xff; \