From aedb528d4300a1dcb0980780f8ab45ecf64dc1d8 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 9 Nov 2019 13:43:09 +0000 Subject: [PATCH] llvm-exegesis - fix shadow variable warnings. NFCI. --- llvm/tools/llvm-exegesis/lib/Assembler.cpp | 4 ++-- llvm/tools/llvm-exegesis/llvm-exegesis.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/llvm/tools/llvm-exegesis/lib/Assembler.cpp b/llvm/tools/llvm-exegesis/lib/Assembler.cpp index 4983823..631aed0 100644 --- a/llvm/tools/llvm-exegesis/lib/Assembler.cpp +++ b/llvm/tools/llvm-exegesis/lib/Assembler.cpp @@ -70,7 +70,7 @@ static bool addPass(PassManagerBase &PM, StringRef PassName, return false; } -MachineFunction &createVoidVoidPtrMachineFunction(StringRef FunctionID, +MachineFunction &createVoidVoidPtrMachineFunction(StringRef FunctionName, Module *Module, MachineModuleInfo *MMI) { Type *const ReturnType = Type::getInt32Ty(Module->getContext()); @@ -79,7 +79,7 @@ MachineFunction &createVoidVoidPtrMachineFunction(StringRef FunctionID, FunctionType *FunctionType = FunctionType::get(ReturnType, {MemParamType}, false); Function *const F = Function::Create( - FunctionType, GlobalValue::InternalLinkage, FunctionID, Module); + FunctionType, GlobalValue::InternalLinkage, FunctionName, Module); // Making sure we can create a MachineFunction out of this Function even if it // contains no IR. F->setIsMaterializable(true); diff --git a/llvm/tools/llvm-exegesis/llvm-exegesis.cpp b/llvm/tools/llvm-exegesis/llvm-exegesis.cpp index 04792e6..d16f88e 100644 --- a/llvm/tools/llvm-exegesis/llvm-exegesis.cpp +++ b/llvm/tools/llvm-exegesis/llvm-exegesis.cpp @@ -217,11 +217,11 @@ generateSnippets(const LLVMState &State, unsigned Opcode, if (InstrDesc.isCall() || InstrDesc.isReturn()) return make_error("Unsupported opcode: isCall/isReturn"); - SnippetGenerator::Options Options; - Options.MaxConfigsPerOpcode = MaxConfigsPerOpcode; + SnippetGenerator::Options SnippetOptions; + SnippetOptions.MaxConfigsPerOpcode = MaxConfigsPerOpcode; const std::unique_ptr Generator = State.getExegesisTarget().createSnippetGenerator(BenchmarkMode, State, - Options); + SnippetOptions); if (!Generator) report_fatal_error("cannot create snippet generator"); return Generator->generateConfigurations(Instr, ForbiddenRegs); -- 2.7.4