Trivial whitespace changes

From-SVN: r43671
This commit is contained in:
Richard Kenner 2001-07-01 09:34:02 -04:00
parent cf382a9154
commit b987f23731
2 changed files with 3 additions and 2 deletions

View File

@ -3348,6 +3348,7 @@ compute_insns_for_mem (insns, last_insn, ht)
/* Helper function for purge_addressof called through for_each_rtx.
Returns true iff the rtl is an ADDRESSOF. */
static int
is_addressof (rtl, data)
rtx *rtl;

View File

@ -2421,11 +2421,11 @@ for_each_rtx (x, f, data)
{
int result;
int length;
const char* format;
const char *format;
int i;
/* Call F on X. */
result = (*f)(x, data);
result = (*f) (x, data);
if (result == -1)
/* Do not traverse sub-expressions. */
return 0;