From: jason Date: Tue, 14 Aug 2001 15:01:48 +0000 (+0000) Subject: * tlink.c (scan_linker_output): Check string for unsatisfied in X-Git-Tag: upstream/4.9.2~92631 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=036a9f3cec27f82b77281bcfb74b3716d0224be3;p=platform%2Fupstream%2Flinaro-gcc.git * tlink.c (scan_linker_output): Check string for unsatisfied in addition to undefined and unresolved. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44892 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c6ee6a..c64d259 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-14 Steve Ellcey + + * tlink.c (scan_linker_output): Check string for unsatisfied in + addition to undefined and unresolved. + 2001-08-14 Graham Stott * libgcc2.c (*): Replace EH_FRAME_SECTION with diff --git a/gcc/tlink.c b/gcc/tlink.c index 606707d..783e4f1 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -671,6 +671,7 @@ scan_linker_output (fname) mistakenly use GNU ld's "In function `foo':" message. */ if (q && (strstr (oldq, "ndefined") || strstr (oldq, "nresolved") + || strstr (oldq, "nsatisfied") || strstr (oldq, "ultiple"))) { *q = 0;