diff options
Diffstat (limited to 'src/cpu/nativetrace.hh')
-rw-r--r-- | src/cpu/nativetrace.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/nativetrace.hh b/src/cpu/nativetrace.hh index d91dbd6ec..528e3bf65 100644 --- a/src/cpu/nativetrace.hh +++ b/src/cpu/nativetrace.hh @@ -90,7 +90,7 @@ class NativeTrace : public ExeTracer bool checkReg(const char * regName, T &val, T &realVal) { - if(val != realVal) + if (val != realVal) { DPRINTFN("Register %s should be %#x but is %#x.\n", regName, realVal, val); |