diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 23:29:10 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 23:29:10 -0700 |
commit | 3c4567f2a65e0809d84d85a3fd82a294a1b0cb96 (patch) | |
tree | 714aaa21efa0c14b2660053e4a8da9970fc9ae85 /src/arch/x86/isa/macroop.isa | |
parent | 33ebd04474a1042e5cce585802481b6e95a4e92e (diff) | |
download | gem5-3c4567f2a65e0809d84d85a3fd82a294a1b0cb96.tar.xz |
X86: Set the delayed commit flag in x86 microops appropriately.
Diffstat (limited to 'src/arch/x86/isa/macroop.isa')
-rw-r--r-- | src/arch/x86/isa/macroop.isa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/isa/macroop.isa b/src/arch/x86/isa/macroop.isa index b851a92c7..7d94dd95c 100644 --- a/src/arch/x86/isa/macroop.isa +++ b/src/arch/x86/isa/macroop.isa @@ -220,11 +220,11 @@ let {{ allocMicroops = '' micropc = 0 for op in self.microops: + isLast = (micropc == numMicroops - 1) allocMicroops += \ "microops[%d] = %s;\n" % \ - (micropc, op.getAllocator(True, False, - micropc == 0, - micropc == numMicroops - 1)) + (micropc, op.getAllocator(True, not isLast, + micropc == 0, isLast)) micropc += 1 iop = InstObjParams(self.name, self.name, "Macroop", {"code" : "", "num_microops" : numMicroops, |