| Index: src/IceInstX8632.cpp
|
| diff --git a/src/IceInstX8632.cpp b/src/IceInstX8632.cpp
|
| index cfd7fb314194157f6ab7af1f974264a49efd76b7..3a8c57c0203c4a78cab150ffd5b46269e9cd47d6 100644
|
| --- a/src/IceInstX8632.cpp
|
| +++ b/src/IceInstX8632.cpp
|
| @@ -106,9 +106,8 @@ void MachineTraits<TargetX8632>::X86OperandMem::emit(const Cfg *Func) const {
|
| assert(SegmentReg >= 0 && SegmentReg < SegReg_NUM);
|
| Str << "%" << X8632::Traits::InstSegmentRegNames[SegmentReg] << ":";
|
| }
|
| - // 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)) {
|
|
|