[PATCH] D147714: [Attr] Introduce [[clang::nonportable_musttail]] as less strict version of [[clang::musttail]]

Dávid Bolvanský via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 6 14:28:39 PDT 2023


xbolva00 added a comment.

Possibly verifier ignores it? Because I dont see any verifier error compiling this testcase:

  void NoParams();
  void TestParamArityMismatchNonPortable(int x) {
    [[clang::nonportable_musttail]]
    return NoParams();
  }

But yeah, this is something we need to solve somehow.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D147714/new/

https://reviews.llvm.org/D147714



More information about the llvm-commits mailing list