104a105
> bool updateOnError;
151c152
< float fp;
---
> // float fp;
272c273
< result.fp = val;
---
> result.dbl = (double)val;
321c322
< void recordPCChange(uint64_t val) { changedPC = true; }
---
> void recordPCChange(uint64_t val) { changedPC = true; newPC = val; }
362a364
> bool updateOnError;
379c381
< : CheckerCPU(p)
---
> : CheckerCPU(p), updateThisCycle(false), unverifiedInst(NULL)
396c398
< if (exitOnError)
---
> if (exitOnError) {
397a400,402
> } else if (updateOnError) {
> updateThisCycle = true;
> }
401a407,410
> bool updateThisCycle;
>
> DynInstPtr unverifiedInst;
>