summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Bogusz2006-06-07 09:39:04 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commitda530c8a2625621a9bba97f689ec769d02218693 (patch)
treef58221785e9b957aa9447fcdc468e20cf767f9c8
parent7889386ebd29e4175b05c0532fd0cbe590f060d7 (diff)
downloadcrossppc-binutils-da530c8a2625621a9bba97f689ec769d02218693.zip
crossppc-binutils-da530c8a2625621a9bba97f689ec769d02218693.tar.gz
- updated for 2.17.50.0.2auto/th/binutils-2_17_50_0_2-2
Changed files: binutils-gasp.patch -> 1.11
-rw-r--r--binutils-gasp.patch23
1 files changed, 19 insertions, 4 deletions
diff --git a/binutils-gasp.patch b/binutils-gasp.patch
index 0d07cc8..5e2ef09 100644
--- a/binutils-gasp.patch
+++ b/binutils-gasp.patch
@@ -1512,10 +1512,9 @@ diff -urNbB binutils-2.16.91.0.2.org/gas/doc/gasp.texinfo binutils-2.16.91.0.2/g
+
+@contents
+@bye
-diff -urNbB binutils-2.16.91.0.2.org/gas/gasp.c binutils-2.16.91.0.2/gas/gasp.c
---- binutils-2.16.91.0.2.org/gas/gasp.c 1970-01-01 00:00:00.000000000 +0000
-+++ binutils-2.16.91.0.2/gas/gasp.c 2005-07-21 18:31:04.000000000 +0000
-@@ -0,0 +1,3983 @@
+--- binutils-2.17.50.0.2/gas/gasp.c.orig 1970-01-01 01:00:00.000000000 +0100
++++ binutils-2.17.50.0.2/gas/gasp.c 2006-06-07 11:22:13.774440000 +0200
+@@ -0,0 +1,3999 @@
+/* gasp.c - Gnu assembler preprocessor main program.
+ Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+ Free Software Foundation, Inc.
@@ -5441,6 +5440,22 @@ diff -urNbB binutils-2.16.91.0.2.org/gas/gasp.c binutils-2.16.91.0.2/gas/gasp.c
+ as_bad_internal (file, line, buffer);
+}
+
++/* Indicate assertion failure.
++ Arguments: Filename, line number, optional function name. */
++
++void
++as_assert (const char *file, int line, const char *fn)
++{
++ fprintf (stderr, _("Internal error!\n"));
++ if (fn)
++ fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"),
++ fn, file, line);
++ else
++ fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line);
++ fprintf (stderr, _("Please report this bug.\n"));
++ xexit (EXIT_FAILURE);
++}
++
+#ifndef LEX_AT
+/* The m88k unfortunately uses @ as a label beginner. */
+#define LEX_AT 0