diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/Assembler.cpp | 4 | ||||
-rw-r--r-- | 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 4983823df0f..631aed0758f 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 04792e6376a..d16f88e4737 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<Failure>("Unsupported opcode: isCall/isReturn"); - SnippetGenerator::Options Options; - Options.MaxConfigsPerOpcode = MaxConfigsPerOpcode; + SnippetGenerator::Options SnippetOptions; + SnippetOptions.MaxConfigsPerOpcode = MaxConfigsPerOpcode; const std::unique_ptr<SnippetGenerator> Generator = State.getExegesisTarget().createSnippetGenerator(BenchmarkMode, State, - Options); + SnippetOptions); if (!Generator) report_fatal_error("cannot create snippet generator"); return Generator->generateConfigurations(Instr, ForbiddenRegs); |