From: Gabe Black Date: Thu, 3 Feb 2011 07:34:14 +0000 (-0800) Subject: O3: Fix a style bug in O3. X-Git-Tag: stable_2012_02_02~621 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=869a046e413d7cbfdda4e33eed8191004017a83f;p=gem5.git O3: Fix a style bug in O3. --- 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::fetch(bool &status_change) // Increment stat of fetched instructions. ++fetchedInsts; - if (staticInst->isMacroop()) - { + if (staticInst->isMacroop()) { curMacroop = staticInst; - } - else { + } else { pcOffset = 0; } } else {