diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-02-02 23:34:14 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-02-02 23:34:14 -0800 |
commit | 869a046e413d7cbfdda4e33eed8191004017a83f (patch) | |
tree | 16226a11e4f836e99d847c66ed5078a3913b43ad /src/cpu/o3 | |
parent | cb22bead7da09913a4477b882b91850e9abf12f0 (diff) | |
download | gem5-869a046e413d7cbfdda4e33eed8191004017a83f.tar.xz |
O3: Fix a style bug in O3.
Diffstat (limited to 'src/cpu/o3')
-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 { |