File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ def err_builtin_needs_feature : Error<"%0 needs target feature %1">;
279
279
def err_function_needs_feature : Error<
280
280
"always_inline function %1 requires target feature '%2', but would "
281
281
"be inlined into function %0 that is compiled without support for '%2'">;
282
- def err_function_alwaysinline_attribute_mismatch : Error<
282
+ def err_function_always_inline_attribute_mismatch : Error<
283
283
"always_inline function %1 and its caller %0 have mismatched %2 attributes">;
284
284
285
285
def warn_avx_calling_convention
Original file line number Diff line number Diff line change @@ -835,7 +835,7 @@ void AArch64TargetCodeGenInfo::checkFunctionCallABI(
835
835
if (CalleeStreamingMode != CallerStreamingMode &&
836
836
CalleeStreamingMode != Sema::ArmStreamingCompatible)
837
837
CGM.getDiags ().Report (CallLoc,
838
- diag::err_function_alwaysinline_attribute_mismatch )
838
+ diag::err_function_always_inline_attribute_mismatch )
839
839
<< Caller->getDeclName () << Callee->getDeclName () << " streaming" ;
840
840
}
841
841
You can’t perform that action at this time.
0 commit comments