================
@@ -1853,18 +1853,26 @@ static std::string getMangledNameImpl(CodeGenModule 
&CGM, GlobalDecl GD,
         break;
       case MultiVersionKind::Target: {
         auto *Attr = FD->getAttr<TargetAttr>();
+        assert(Attr &&
+               "Expected TargetAttr to be present for attribute mangling");
         const ABIInfo &Info = CGM.getTargetCodeGenInfo().getABIInfo();
         Info.appendAttributeMangling(Attr, Out);
         break;
       }
       case MultiVersionKind::TargetVersion: {
         auto *Attr = FD->getAttr<TargetVersionAttr>();
+        assert(
+            Attr &&
+            "Expected TargetVersionAttr to be present for attribute mangling");
----------------
efriedma-quic wrote:

Please split the string in two so the formatting is less awkward.  Otherwise 
LGTM

https://github.com/llvm/llvm-project/pull/94228
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to