From: Nicholas Nethercote Date: Wed, 20 May 2009 08:14:23 +0000 (+0000) Subject: DARWIN sync: whitespace change only. X-Git-Tag: svn/VALGRIND_3_5_0~635 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7672429a6269162ebca51ceb2dad6508c47850cf;p=thirdparty%2Fvalgrind.git DARWIN sync: whitespace change only. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10052 --- diff --git a/coregrind/m_syswrap/priv_types_n_macros.h b/coregrind/m_syswrap/priv_types_n_macros.h index bdb4b4fc60..2244ab7be6 100644 --- a/coregrind/m_syswrap/priv_types_n_macros.h +++ b/coregrind/m_syswrap/priv_types_n_macros.h @@ -366,16 +366,16 @@ static inline UWord getERR ( SyscallStatus* st ) { since the least significant parts of the guest register are stored in memory at the lowest address. */ -#define PRRAn_LE(n,s,t,a) \ - do { \ - Int here = layout->o_arg##n; \ - vg_assert(sizeof(t) <= sizeof(UWord)); \ - vg_assert(here >= 0); \ - VG_(tdict).track_pre_reg_read( \ - Vg_CoreSysCall, tid, s"("#a")", \ - here, sizeof(t) \ - ); \ - } while (0) +#define PRRAn_LE(n,s,t,a) \ + do { \ + Int here = layout->o_arg##n; \ + vg_assert(sizeof(t) <= sizeof(UWord)); \ + vg_assert(here >= 0); \ + VG_(tdict).track_pre_reg_read( \ + Vg_CoreSysCall, tid, s"("#a")", \ + here, sizeof(t) \ + ); \ + } while (0) /* big-endian: the part of the guest state being read is let next = offset_of_reg + sizeof(reg) @@ -383,17 +383,17 @@ static inline UWord getERR ( SyscallStatus* st ) { since the least significant parts of the guest register are stored in memory at the highest address. */ -#define PRRAn_BE(n,s,t,a) \ - do { \ - Int here = layout->o_arg##n; \ - Int next = layout->o_arg##n + sizeof(UWord); \ - vg_assert(sizeof(t) <= sizeof(UWord)); \ - vg_assert(here >= 0); \ - VG_(tdict).track_pre_reg_read( \ - Vg_CoreSysCall, tid, s"("#a")", \ - next-sizeof(t), sizeof(t) \ - ); \ - } while (0) +#define PRRAn_BE(n,s,t,a) \ + do { \ + Int here = layout->o_arg##n; \ + Int next = layout->o_arg##n + sizeof(UWord); \ + vg_assert(sizeof(t) <= sizeof(UWord)); \ + vg_assert(here >= 0); \ + VG_(tdict).track_pre_reg_read( \ + Vg_CoreSysCall, tid, s"("#a")", \ + next-sizeof(t), sizeof(t) \ + ); \ + } while (0) #if defined(VG_BIGENDIAN) # define PRRAn(n,s,t,a) PRRAn_BE(n,s,t,a)