mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Have 'addFnAttr' take the attribute enum value. Then have it build the attribute object and add it appropriately. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -682,9 +682,7 @@ void GCOVProfiler::insertCounterWriteout(
|
||||
"__llvm_gcov_init", M);
|
||||
F->setUnnamedAddr(true);
|
||||
F->setLinkage(GlobalValue::InternalLinkage);
|
||||
Attributes::Builder B;
|
||||
B.addAttribute(Attributes::NoInline);
|
||||
F->addFnAttr(Attributes::get(B));
|
||||
F->addFnAttr(Attributes::NoInline);
|
||||
|
||||
BB = BasicBlock::Create(*Ctx, "entry", F);
|
||||
Builder.SetInsertPoint(BB);
|
||||
@ -703,9 +701,7 @@ void GCOVProfiler::insertIndirectCounterIncrement() {
|
||||
cast<Function>(GCOVProfiler::getIncrementIndirectCounterFunc());
|
||||
Fn->setUnnamedAddr(true);
|
||||
Fn->setLinkage(GlobalValue::InternalLinkage);
|
||||
Attributes::Builder B;
|
||||
B.addAttribute(Attributes::NoInline);
|
||||
Fn->addFnAttr(Attributes::get(B));
|
||||
Fn->addFnAttr(Attributes::NoInline);
|
||||
|
||||
Type *Int32Ty = Type::getInt32Ty(*Ctx);
|
||||
Type *Int64Ty = Type::getInt64Ty(*Ctx);
|
||||
|
Reference in New Issue
Block a user