| Index: src/IceTargetLoweringX8664.cpp
|
| diff --git a/src/IceTargetLoweringX8664.cpp b/src/IceTargetLoweringX8664.cpp
|
| index 51f6e177a23161d12f5740d535010abcbd6e10de..28304a9c77a40c5caa449986c60c3a34926b2fd5 100644
|
| --- a/src/IceTargetLoweringX8664.cpp
|
| +++ b/src/IceTargetLoweringX8664.cpp
|
| @@ -625,13 +625,11 @@ Inst *TargetX8664::emitCallToTarget(Operand *CallTarget, Variable *ReturnReg) {
|
| InstX86Label *ReturnAddress = InstX86Label::create(Func, this);
|
| auto *ReturnRelocOffset = RelocOffset::create(Ctx);
|
| ReturnAddress->setRelocOffset(ReturnRelocOffset);
|
| - constexpr bool SuppressMangling = true;
|
| constexpr RelocOffsetT NoFixedOffset = 0;
|
| const IceString EmitString = ReturnAddress->getName(Func);
|
| auto *ReturnReloc = llvm::cast<ConstantRelocatable>(
|
| Ctx->getConstantSym(NoFixedOffset, {ReturnRelocOffset},
|
| - Ctx->mangleName(Func->getFunctionName()),
|
| - EmitString, SuppressMangling));
|
| + Func->getFunctionName(), EmitString));
|
| /* AutoBundle scoping */ {
|
| std::unique_ptr<AutoBundle> Bundler;
|
| if (CallTargetR == nullptr) {
|
|
|