mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
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:
parent
df8195dfa4
commit
d6ccef5ab0
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user