Closed
Description
as proposed llvm/llvm-project#74358 (comment) here let's make possible to mix target_clones
with target_version
.
__attribute__((target_clones("dotprod", "aes")))
int callee(void) {
return 42;
}
__attribute__((target_version("default")))
int callee(void) {
return 0;
}
int caller(void) {
return callee();
}