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

@ -124,7 +124,7 @@ function X86Seg(cpu, id, sName, fProt)
*
* loadIDT() sets fCall to true unconditionally in protected-mode (fCall has no meaning in real-mode).
*/
if (this.id == X86Seg.ID.CODE) {
if (this.id == 1) { // X86Seg.ID.CODE (don't use until it's defined, or the Closure Compiler won't inline it)
this.offIP = 0;
this.fCall = null;
this.fStackSwitch = false;