mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Whitespace cleanup and comment out unused parameter
--HG-- extra : convert_revision : eb6ff4c45ba4edebad7f79fac7f13504f4140482
This commit is contained in:
parent
c348a161dc
commit
72e5feb3c9
@ -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); \
|
||||
|
@ -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; \
|
||||
|
@ -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); \
|
||||
|
@ -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); \
|
||||
|
@ -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); \
|
||||
|
@ -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*);\
|
||||
|
Loading…
Reference in New Issue
Block a user