This is the only way I could get reg-printf.c from glibc, some stupid handling of comments used to discard gcc output...

Wonder why it doesn't happen on x86 ? (maybe cause comment chars are different ?)
cf. http://sources.redhat.com/ml/binutils/2004-04/msg00646.html


git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@22737 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2007-10-26 16:58:21 +00:00
parent df8195dfa4
commit d6ccef5ab0

View File

@ -1011,7 +1011,12 @@ read_a_source_file (char *name)
bump_line_counters ();
s = input_line_pointer;
if (strncmp (s, "APP\n", 4))
continue; /* We ignore it */
{
/* We ignore it */
ignore_rest_of_line ();
continue;
}
bump_line_counters ();
s += 4;
sb_new (&sbuf);