diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/insts/microop.hh | 2 |
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); } } |