Skip to content

Commit 48ce9aa

Browse files
committed
Address review comments
1 parent 0499aab commit 48ce9aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ static bool ShouldSignWithBKey(const Function &F, const AArch64Subtarget &STI) {
7272
return Key == "b_key";
7373
}
7474

75-
static bool HasELFSignedGOTHelper(const Function &F,
75+
static bool hasELFSignedGOTHelper(const Function &F,
7676
const AArch64Subtarget *STI) {
7777
if (!Triple(STI->getTargetTriple()).isOSBinFormatELF())
7878
return false;
@@ -92,7 +92,7 @@ AArch64FunctionInfo::AArch64FunctionInfo(const Function &F,
9292
HasRedZone = false;
9393
std::tie(SignReturnAddress, SignReturnAddressAll) = GetSignReturnAddress(F);
9494
SignWithBKey = ShouldSignWithBKey(F, *STI);
95-
HasELFSignedGOT = HasELFSignedGOTHelper(F, STI);
95+
HasELFSignedGOT = hasELFSignedGOTHelper(F, STI);
9696
// TODO: skip functions that have no instrumented allocas for optimization
9797
IsMTETagged = F.hasFnAttribute(Attribute::SanitizeMemTag);
9898

0 commit comments

Comments
 (0)