1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-30 21:21:45 +02:00

Minor whitespace fixes.

(Logical change 1.140)
This commit is contained in:
hp.com!davidm 2003-12-20 11:20:42 +00:00
parent b25fd18403
commit 9b52308ae2
2 changed files with 4 additions and 4 deletions

View file

@ -910,10 +910,10 @@ put_unwind_info (struct cursor *c, unw_proc_info_t *pi)
if (!c->pi_valid)
return;
if ((c)->pi_is_dynamic)
if (c->pi_is_dynamic)
unwi_put_dynamic_unwind_info (c->as, pi, c->as_arg);
else
ia64_put_unwind_info(c, pi);
ia64_put_unwind_info (c, pi);
}
static int
@ -1057,7 +1057,7 @@ create_state_record_for (struct cursor *c, struct ia64_state_record *sr,
HIDDEN int
ia64_create_state_record (struct cursor *c, struct ia64_state_record *sr)
{
return create_state_record_for(c, sr, c->ip);
return create_state_record_for (c, sr, c->ip);
}
HIDDEN int

View file

@ -37,7 +37,7 @@ unw_flush_cache (unw_addr_space_t as, unw_word_t lo, unw_word_t hi)
range. */
#ifdef HAVE_FETCH_AND_ADD1
fetch_and_add1(&as->cache_generation);
fetch_and_add1 (&as->cache_generation);
#else
# warning unw_flush_cache(): need a way to atomically increment an integer.
++as->cache_generation;