O3: Fix a style bug in O3.
authorGabe Black <gblack@eecs.umich.edu>
Thu, 3 Feb 2011 07:34:14 +0000 (23:34 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Thu, 3 Feb 2011 07:34:14 +0000 (23:34 -0800)
src/cpu/o3/fetch_impl.hh

index 927af42c3a938f83fc95548ba5da0899d50c90c3..d0c83d586ed0f8f8c1569632e74e89b541442cef 100644 (file)
@@ -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 {