|
From: <sv...@va...> - 2009-05-20 08:14:41
|
Author: njn
Date: 2009-05-20 09:14:23 +0100 (Wed, 20 May 2009)
New Revision: 10052
Log:
DARWIN sync: whitespace change only.
Modified:
trunk/coregrind/m_syswrap/priv_types_n_macros.h
Modified: trunk/coregrind/m_syswrap/priv_types_n_macros.h
===================================================================
--- trunk/coregrind/m_syswrap/priv_types_n_macros.h 2009-05-20 08:07:30 UTC (rev 10051)
+++ trunk/coregrind/m_syswrap/priv_types_n_macros.h 2009-05-20 08:14:23 UTC (rev 10052)
@@ -366,16 +366,16 @@
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 @@
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)
|