]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* ld-srec/sr3.cc: Add definitions for terminate, __terminate, and
authorIan Lance Taylor <ian@airs.com>
Mon, 20 Oct 1997 18:37:48 +0000 (18:37 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 20 Oct 1997 18:37:48 +0000 (18:37 +0000)
  __throw, since the current g++ expects them to be defined.

ld/testsuite/ChangeLog
ld/testsuite/ld-srec/sr3.cc

index e5f66298c4dd3fbc236367c8cd052b1d7c2fbc49..708b6aaccf6cf52de31018d9ccdcad5ee00ee5ed 100644 (file)
@@ -1,3 +1,28 @@
+Mon Oct 20 14:36:39 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * ld-srec/sr3.cc: Add definitions for terminate, __terminate, and
+       __throw, since the current g++ expects them to be defined.
+
+Fri Oct  3 12:24:03 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * ld-elfvers/vers.exp (objdump_emptyverstuff): Accept the output
+       file if the string libc appears in it.
+       (objdump_versionstuff): Accept unexpected lines in the output
+       file.  Compare lines using string match.
+       * ld-elfvers/vers6.ver: Permit any value in the vna_other field.
+
+Tue Aug 12 16:01:22 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * ld-scripts/crossref.exp: Correct string quoting.
+
+Sat Aug  9 00:56:03 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * config/default.exp: Change ld, as, nm and strip from .new to
+       -new.  Load ld-lib.exp rather than ld.exp.
+       * ld-bootstrap/bootstrap.exp: Use ld-new rather than ld.new.
+       * lib/ld-lib.exp: Rename from lib/ld.exp, for the benefit of
+       DejaGnu changes.
+
 Thu Jun 26 12:07:03 1997  Ian Lance Taylor  <ian@cygnus.com>
 
        * ld-elfvers/vers.exp: Use egrep rather than grep when looking for
index 800b46b8355464e87b145025071aacccdfd6790c..e4aea9272230a7e1336d33cbef74278229019f54 100644 (file)
@@ -26,6 +26,14 @@ main ()
   return 0;
 }
 
+void
+terminate(void)
+{
+  /* This recursive call prevents a compiler warning that the noreturn
+     function terminate actually does return.  */
+  terminate ();
+}
+
 extern "C" {
 int
 __main ()
@@ -42,15 +50,13 @@ __builtin_new ()
 {
 }
 
-/* V_SPILL and V_FILL are used by a29k-amd-udi.  */
-
-int
-V_SPILL ()
+void
+__throw ()
 {
 }
 
-int
-V_FILL ()
+void
+__terminate ()
 {
 }
 }