Updated Closure Compiler, fixed some constant inlining problems, and turned PREFETCH off for now

This commit is contained in:
Jeff Parsons 2015-10-27 13:02:43 -07:00
commit 8e71267747
34 changed files with 9226 additions and 3625 deletions

View file

@ -3874,7 +3874,7 @@ X86.fnFault = function(nFault, nError, nCycles, fHalt)
this.opCS = -1;
}
this.setIP(this.opLIP - this.segCS.base);
if (this.opLSP != X86.ADDR_INVALID) {
if (this.opLSP !== X86.ADDR_INVALID) {
this.setSP((this.regESP & ~this.segSS.maskAddr) | (this.opLSP - this.segSS.base));
this.opLSP = X86.ADDR_INVALID;
}