]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):
authorDanny Smith <dannysmith@users.sourceforge.net>
Thu, 7 Aug 2003 01:52:36 +0000 (01:52 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Thu, 7 Aug 2003 01:52:36 +0000 (01:52 +0000)
Change second (cmdline) arg to lang_add_entry to FALSE.
(set_pe_subsystem): Change second arg to lang_add_entry to TRUE.

ld/ChangeLog
ld/emultempl/pe.em

index d87dfbe8043e062f7bb5173beaa4e2bf57dfcfa9..b88715dc8eece23c173a8517d784fe72ef106414 100644 (file)
@@ -1,3 +1,9 @@
+2003-08-07  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * emultempl/pe.em (gld_${EMULATION_NAME}_before_parse):
+       Change second (cmdline) arg to lang_add_entry to FALSE.
+       (set_pe_subsystem): Change second arg to lang_add_entry to TRUE.
+
 2003-08-05  Christian Groessler  <chris@groessler.org>
             Jason Eckhardt  <jle@rice.edu>
 
 
 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
 
-       * defilep.y (opt_base): If no number given, set to default
+       * deffilep.y (opt_base): If no number given, set to default
        (-1), not 0.
 
 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
index bed23c3ce6b2fc423f8c7f718a0ad71959babe34..b16e5fa693adc40535e3e9fb21bb72ba9880f99a 100644 (file)
@@ -141,9 +141,9 @@ gld_${EMULATION_NAME}_before_parse (void)
 
 #if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2)
 #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
-  lang_add_entry ("WinMainCRTStartup", 1);
+  lang_add_entry ("WinMainCRTStartup", FALSE);
 #else
-  lang_add_entry ("_WinMainCRTStartup", 1);
+  lang_add_entry ("_WinMainCRTStartup", FALSE);
 #endif
 #endif
 #endif
@@ -439,7 +439,7 @@ set_pe_subsystem (void)
              entry = alc_entry;
            }
 
-         lang_add_entry (entry, 0);
+         lang_add_entry (entry, TRUE);
 
          return;
        }