Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add clarification for FMV behaviour.
This clarifies cases like: ```C __attribute__((target_version("default"))) int foo(int (* x)[12]){ return (*x)[11]; } __attribute__((target_version("sve"))) int foo(int (* x)[10]){ return (*x)[7]; } int bar() { int y[10]; return foo(&y); } ``` ```C int __attribute__((target_version("default"))) fn (int x) { return 1; } void bar () { int __attribute__((target_version("sve2"))) fn (int); fn(1); } ```
- Loading branch information