diff options
| -rw-r--r-- | lib/Target/X86/X86MCInstLower.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/X86/X86MCInstLower.cpp b/lib/Target/X86/X86MCInstLower.cpp index 04d1ad5..92a1118 100644 --- a/lib/Target/X86/X86MCInstLower.cpp +++ b/lib/Target/X86/X86MCInstLower.cpp @@ -708,6 +708,9 @@ parseMemoryOperand(StackMaps::Location::LocationType LocTy, Index.isReg() && Index.getReg() == 0 && Disp.isImm() && ZeroReg.isReg() && (ZeroReg.getReg() == 0) && "Unsupported x86 memory operand sequence."); + (void)Scale; + (void)Index; + (void)ZeroReg; return std::make_pair( Location(LocTy, Base.getReg(), Disp.getImm()), ++MOI); |
