summaryrefslogtreecommitdiff
path: root/src/arch/x86/insts/microop.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/insts/microop.hh')
-rw-r--r--src/arch/x86/insts/microop.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/insts/microop.hh b/src/arch/x86/insts/microop.hh
index e5248c9ce..1ebfdd33e 100644
--- a/src/arch/x86/insts/microop.hh
+++ b/src/arch/x86/insts/microop.hh
@@ -107,7 +107,7 @@ namespace X86ISA
// sized chunks, feed it those one at a time while oring them in.
for (int i = 0; i < Chunks; i++) {
unsigned shift = i * ChunkSize * 8;
- flags |= (std::bitset<NumFlags>(setFlags >> shift) << shift);
+ flags |= (std::bitset<Num_Flags>(setFlags >> shift) << shift);
}
}