]> git.gag.com Git - fw/sdcc/commitdiff
removed --noregparms because it is obsolete and caused problems with e.g.
authorjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 29 Mar 2001 12:55:03 +0000 (12:55 +0000)
committerjohanknol <johanknol@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Thu, 29 Mar 2001 12:55:03 +0000 (12:55 +0000)
--int-long-reent and --stack-auto
removed some other obsolete switches (Lx etc)
fixed -Wa

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

src/ds390/main.c
src/mcs51/main.c
src/z80/gbz80.c
src/z80/main.c

index ee85833acdc0c44c981e111a8218840950cbfb1d..f22ce997e82d50a725d33571a4f16d1f41614896 100644 (file)
@@ -192,7 +192,7 @@ static const char *_linkCmd[] =
 
 static const char *_asmCmd[] =
 {
-  "asx8051", "-plosgff", "$1.asm", NULL
+  "asx8051", "$l", "-plosgff", "$1.asm", NULL
 };
 
 /* Globals */
index 99484c84e1d5b0307ad856fcf4b29c604a775943..fd112809cc82708405088f5a179e57cf902179e5 100644 (file)
@@ -132,7 +132,7 @@ static const char *_linkCmd[] =
 
 static const char *_asmCmd[] =
 {
-  "asx8051", "-plosgffc", "$1.asm", NULL
+  "asx8051", "$l", "-plosgffc", "$1.asm", NULL
 };
 
 /* Globals */
index b24c932fbab8f9287b1603ae06de799b2102acea..27aca8c172d7a4abdcb734aa614d0318236fc2ca 100644 (file)
@@ -42,7 +42,6 @@ _gbz80_setDefaultOptions (void)
   options.nopeep = 0;
   options.stackAuto = 1;
   options.mainreturn = 1;
-  options.noregparms = 1;
   /* first the options part */
   options.intlong_rent = 1;
 
index 78dfad948350d8ff049ba5f06451ffde26513187..381a673f21c0a7735c36a94383af4434e97d9bee 100644 (file)
@@ -259,7 +259,6 @@ _setDefaultOptions (void)
   options.nopeep = 0;
   options.stackAuto = 1;
   options.mainreturn = 1;
-  options.noregparms = 1;
   options.nodebug = 1;
   /* first the options part */
   options.intlong_rent = 1;