Skip to content

Commit 813a75b

Browse files
committed
Apply clang-format
1 parent 3c1af4c commit 813a75b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

clang/lib/Basic/Targets/AArch64.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ AArch64TargetInfo::AArch64TargetInfo(const llvm::Triple &Triple,
201201
Opts.EABIVersion == llvm::EABI::GNU ? "\01_mcount" : "mcount";
202202
}
203203

204-
void AArch64TargetInfo::validatePAuthOptions(
205-
DiagnosticsEngine &Diags, const LangOptions &Opts) const {
204+
void AArch64TargetInfo::validatePAuthOptions(DiagnosticsEngine &Diags,
205+
const LangOptions &Opts) const {
206206
if (Opts.SoftPointerAuth)
207207
return;
208208

@@ -212,7 +212,8 @@ void AArch64TargetInfo::validatePAuthOptions(
212212
NeedsFeatPAuth |= Opts.PointerAuthIntrinsics;
213213
NeedsFeatPAuth |= Opts.PointerAuthCalls;
214214
NeedsFeatPAuth |= Opts.PointerAuthReturns;
215-
NeedsFeatPAuth |= Opts.getPointerAuthObjcIsaAuthentication() != PointerAuthenticationMode::None;
215+
NeedsFeatPAuth |= Opts.getPointerAuthObjcIsaAuthentication() !=
216+
PointerAuthenticationMode::None;
216217

217218
if (NeedsFeatPAuth && !HasPAuth)
218219
Diags.Report(diag::err_pauth_cpu_feature_missing);

0 commit comments

Comments
 (0)