Whitespace cleanup and comment out unused parameter

--HG--
extra : convert_revision : eb6ff4c45ba4edebad7f79fac7f13504f4140482
This commit is contained in:
Rick Reitmaier 2010-11-01 16:20:22 -07:00
parent c348a161dc
commit 72e5feb3c9
6 changed files with 10 additions and 10 deletions

View File

@ -271,7 +271,7 @@ verbose_only( extern const char* shiftNames[]; )
void underrunProtect(int bytes); \
void nativePageReset(); \
void nativePageSetup(); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
void asm_immd_nochk(Register, int32_t, int32_t); \
void asm_regarg(ArgType, LIns*, Register); \
void asm_stkarg(LIns* p, int stkd); \

View File

@ -242,7 +242,7 @@ namespace nanojit {
void nativePageSetup(void); \
void nativePageReset(void); \
void underrunProtect(int bytes); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
NIns *_nSlot; \
NIns *_nExitSlot; \
int max_out_args; \

View File

@ -295,7 +295,7 @@ namespace nanojit
void underrunProtect(int bytes); \
void nativePageReset(); \
void nativePageSetup(); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
void br(NIns *addr, int link); \
void br_far(NIns *addr, int link); \
void asm_regarg(ArgType, LIns*, Register); \

View File

@ -167,7 +167,7 @@ namespace nanojit
void nativePageReset(); \
void nativePageSetup(); \
void underrunProtect(int); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
bool simplifyOpcode(LOpcode &); \
\
NIns *asm_immi(int, Register, bool force = false); \

View File

@ -208,7 +208,7 @@ namespace nanojit
void nativePageReset(); \
void nativePageSetup(); \
void underrunProtect(int bytes); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
void asm_align_code(); \
void asm_cmp(LIns *cond); \
void asm_cmpd(LIns *cond); \

View File

@ -373,7 +373,7 @@ namespace nanojit
void underrunProtect(ptrdiff_t bytes); \
void nativePageReset(); \
void nativePageSetup(); \
bool hardenNopInsertion(const Config& c) { return false; } \
bool hardenNopInsertion(const Config& /*c*/) { return false; } \
void asm_qbinop(LIns*); \
void MR(Register, Register);\
void JMP(NIns*);\