File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments