| Index: src/IceInstX86Base.h
|
| diff --git a/src/IceInstX86Base.h b/src/IceInstX86Base.h
|
| index d4dbe59149b949bc935bc8fbd493217af08c2037..3e63cb8a0959a3e4e0f7a23c7b9ed808eec57d32 100644
|
| --- a/src/IceInstX86Base.h
|
| +++ b/src/IceInstX86Base.h
|
| @@ -337,13 +337,13 @@ template <typename TraitsType> struct InstImpl {
|
| void emit(const Cfg *Func) const override;
|
| void emitIAS(const Cfg *Func) const override;
|
| void dump(const Cfg *Func) const override;
|
| - void setIsReturnLocation(bool Value) { IsReturnLocation = Value; }
|
| + void setRelocOffset(RelocOffset *Value) { OffsetReloc = Value; }
|
|
|
| private:
|
| InstX86Label(Cfg *Func, TargetLowering *Target);
|
|
|
| SizeT Number; // used for unique label generation.
|
| - bool IsReturnLocation = false;
|
| + RelocOffset *OffsetReloc = nullptr;
|
| };
|
|
|
| /// Conditional and unconditional branch instruction.
|
|
|