diff options
Diffstat (limited to 'src/cpu/o3/fetch_impl.hh')
-rw-r--r-- | src/cpu/o3/fetch_impl.hh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cpu/o3/fetch_impl.hh b/src/cpu/o3/fetch_impl.hh index 927af42c3..d0c83d586 100644 --- a/src/cpu/o3/fetch_impl.hh +++ b/src/cpu/o3/fetch_impl.hh @@ -1186,11 +1186,9 @@ DefaultFetch<Impl>::fetch(bool &status_change) // Increment stat of fetched instructions. ++fetchedInsts; - if (staticInst->isMacroop()) - { + if (staticInst->isMacroop()) { curMacroop = staticInst; - } - else { + } else { pcOffset = 0; } } else { |