Index: src/IceInstX8664.cpp |
diff --git a/src/IceInstX8664.cpp b/src/IceInstX8664.cpp |
index 6d9ccd6d6e9c0449f82ee84720c7a1e82a96e7e3..cb765ae9630fe4858a6f6a66a9b9437be2a02e67 100644 |
--- a/src/IceInstX8664.cpp |
+++ b/src/IceInstX8664.cpp |
@@ -92,9 +92,8 @@ void MachineTraits<TargetX8664>::X86OperandMem::emit(const Cfg *Func) const { |
if (!BuildDefs::dump()) |
return; |
Ostream &Str = Func->getContext()->getStrEmit(); |
- // Emit as Offset(Base,Index,1<<Shift). |
- // Offset is emitted without the leading '$'. |
- // Omit the (Base,Index,1<<Shift) part if Base==nullptr. |
+ // Emit as Offset(Base,Index,1<<Shift). Offset is emitted without the leading |
+ // '$'. Omit the (Base,Index,1<<Shift) part if Base==nullptr. |
if (!Offset) { |
// No offset, emit nothing. |
} else if (const auto CI = llvm::dyn_cast<ConstantInteger32>(Offset)) { |