Commit 2bff3fd5 by Brad Lucier Committed by Neil Booth

* tradcpp.c (do_include): Make pointer differences 64-bit clean.

From-SVN: r38133
parent d5323b99
2000-12-08 Brad Lucier <lucier@math.purdue.edu>
* tradcpp.c (do_include): Make pointer differences 64-bit clean.
Fri Dec 8 08:23:29 2000 J"orn Rennecke <amylaar@redhat.com> Fri Dec 8 08:23:29 2000 J"orn Rennecke <amylaar@redhat.com>
* fp-bit.c (_fpmul_parts): Use USItype variables as inputs * fp-bit.c (_fpmul_parts): Use USItype variables as inputs
......
...@@ -2328,10 +2328,10 @@ get_filename: ...@@ -2328,10 +2328,10 @@ get_filename:
if (print_deps > (system_header_p || (system_include_depth > 0))) { if (print_deps > (system_header_p || (system_include_depth > 0))) {
if (system_header_p) if (system_header_p)
warning ("nonexistent file <%.*s> omitted from dependency output", warning ("nonexistent file <%.*s> omitted from dependency output",
fend - fbeg, fbeg); flen, fbeg);
else else
{ {
deps_output ((const char *)fbeg, fend - fbeg); deps_output ((const char *)fbeg, flen);
deps_output (" ", 0); deps_output (" ", 0);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment