* doc/sdccman.lyx, src/SDCCmain.c, src/SDCCglobal.h, src/ds390/gen.c,
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Apr 2007 19:59:45 +0000 (19:59 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 17 Apr 2007 19:59:45 +0000 (19:59 +0000)
  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

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4753 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 9995d4658054f6056f7af1684816660c5234edad..93ba830c6a360c86a684af520cef27a4ce324429 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-04-17 Borut Razem <borut.razem AT siol.net>
+
+       * 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
+
 2007-04-17 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * src/mcs51/gen.c (aopOp): set size to 1 for ruonly, fixes bug 1699455
index c5068878632b04e66bf3f2601944b7a1a62e14f0..616b26d3f6da5aae3fbb7448f4d4cc4e3731e097 100644 (file)
@@ -9657,7 +9657,7 @@ status collapsed
 
 \end_inset
 
--no-gen-comments
+-no-verbose-asm
 \begin_inset LatexCommand \index{-\/-no-gen-comments}
 
 \end_inset
@@ -22757,7 +22757,7 @@ status collapsed
 
 \end_inset
 
--debug-extra
+-debug-xtra
 \begin_inset LatexCommand \index{PIC14!Options!-\/-debug-extra}
 
 \end_inset
index e4c64ca4f28334d358f5f748d99a011a9f96e613..53146665d764fed2f2e3833112a9866f1fa5bb46 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 noGenComments;          /* hide comments generated with gen.c */
+    int noVerboseAsm;           /* hide 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 ed2fa9616068b27b85c9de127f983c562a28ce03..a418d6fb76c90804af04665e694386efc3b2b7fd 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_GEN_COMMENTS  "--no-gen-comments"
+#define OPTION_NO_VERBOSE_ASM   "--fno-verbose-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_GEN_COMMENTS, &options.noGenComments, "don't include code generator comments"},
+    { 0,    OPTION_NO_VERBOSE_ASM,   &options.noVerboseAsm, "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 870652ece50b9f0f71c0b17447def7de974265e2..98b513ff79614421554a1b0892ee21191b0749c8 100644 (file)
@@ -26,7 +26,7 @@
 -------------------------------------------------------------------------*/
 
 //#define D(x)
-#define D(x) do if (!options.noGenComments) {x;} while(0)
+#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
 
 #include <stdio.h>
 #include <stdlib.h>
index e00a0b263f1b29fe92b706904c842a1ee341da42..23084dfe6cd84dfe28d6dc5d82713cdbfc6ab9cd 100644 (file)
@@ -28,7 +28,7 @@
 -------------------------------------------------------------------------*/
 
 /* Use the D macro for basic (unobtrusive) debugging messages */
-#define D(x) do if (!options.noGenComments) {x;} while(0)
+#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
 /* Use the DD macro for detailed debugging messages */
 #define DD(x)
 //#define DD(x) x
index a36937f2b817765617bed83f1104f2b910f8858e..a84e29660b9f44d963f6e45c038bffd562340a71 100644 (file)
@@ -28,7 +28,7 @@
       Made everything static
 -------------------------------------------------------------------------*/
 
-#define D(x) do if (!options.noGenComments) {x;} while(0)
+#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
 
 #include <stdio.h>
 #include <stdlib.h>
index 45abfbabf407cea38ec31012e66d3d1e6fde375d..66ea17e4136e3f2d331ed5a593023a1431f44592 100644 (file)
@@ -46,7 +46,7 @@
 #define DEBUG(x)
 //#define DEBUG(x) x
 
-#define D(x) do if (!options.noGenComments) {x;} while(0)
+#define D(x) do if (!options.noVerboseAsm) {x;} while(0)
 
 #define REGS8051_SET(idx,val) do{ \
                                   regs8051[idx].value = (val) & 0xff; \