[clang] [Clang][AArch64] Warn when calling streaming/non-streaming about vect… (PR #79842)
Sander de Smalen via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 19 01:48:49 PDT 2024
================
@@ -3717,6 +3717,16 @@ def err_sme_definition_using_za_in_non_sme_target : Error<
"function using ZA state requires 'sme'">;
def err_sme_definition_using_zt0_in_non_sme2_target : Error<
"function using ZT0 state requires 'sme2'">;
+def warn_sme_streaming_pass_return_vl_to_non_streaming : Warning<
+ "passing a VL-dependent argument to/from a function that has a different"
+ " streaming-mode. The streaming and non-streaming vector lengths may be"
+ " different">,
+ InGroup<AArch64SMEAttributes>, DefaultIgnore;
+def warn_sme_locally_streaming_has_vl_args_returns : Warning<
+ "passing/returning a VL-dependent argument from a function"
+ " arm_locally_streaming attribute. The streaming and non-streaming vector"
----------------
sdesmalen-arm wrote:
```suggestion
"passing/returning a VL-dependent argument from a __arm_locally_streaming"
" function. The streaming and non-streaming vector"
```
https://github.com/llvm/llvm-project/pull/79842
More information about the cfe-commits
mailing list