7014923: G1: code cleanup

Some G1 code cleanup.

Reviewed-by: johnc, jcoomes, jwilhelm
This commit is contained in:
Antonios Printezis 2011-03-04 17:13:19 -05:00
parent 3a4f0a735e
commit 3ff554aec1
15 changed files with 310 additions and 318 deletions

View file

@ -1185,7 +1185,7 @@ inline int build_int_from_shorts( jushort low, jushort high ) {
// '%d' formats to indicate a 64-bit quantity; commonly "l" (in LP64) or "ll"
// (in ILP32).
#define BOOL_TO_STR(__b) (__b) ? "true" : "false"
#define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false")
// Format 32-bit quantities.
#define INT32_FORMAT "%d"