Bug 464052 - windows compilers don't like variables named far r=crowder

This commit is contained in:
Brad Lassey 2008-12-03 08:41:12 -05:00
Родитель f75e5e736b
Коммит 17d0e0d4f4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1095,11 +1095,11 @@ Assembler::asm_prep_fcall(Reservation*, LInsp)
} }
NIns* NIns*
Assembler::asm_branch(bool branchOnFalse, LInsp cond, NIns* targ, bool far) Assembler::asm_branch(bool branchOnFalse, LInsp cond, NIns* targ, bool /*far*/)
{ {
// ignore far -- we figure this out on our own. // ignore far -- we figure this out on our own.
// XXX noone actually uses the far param in nj anyway... (always false) // XXX noone actually uses the far param in nj anyway... (always false)
(void)far;
NIns* at = 0; NIns* at = 0;
LOpcode condop = cond->opcode(); LOpcode condop = cond->opcode();