We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb501dd commit b8e4555Copy full SHA for b8e4555
clang/test/CodeGen/AArch64/fmv-features.c
@@ -4,10 +4,8 @@
4
// RUN: %clang --target=aarch64-linux-gnu --rtlib=compiler-rt -emit-llvm -S -o - %s | FileCheck %s
5
6
// CHECK: define dso_local i32 @fmv._Maes() #[[aes:[0-9]+]] {
7
-__attribute__((target_version("aes"))) int fmv(void) { return 0; }
8
-
9
// CHECK: define dso_local i32 @fmv._Mbf16() #[[bf16:[0-9]+]] {
10
-__attribute__((target_version("bf16"))) int fmv(void) { return 0; }
+__attribute__((target_clones("aes", "bf16"))) int fmv(void) { return 0; }
11
12
// CHECK: define dso_local i32 @fmv._Mbti() #[[bti:[0-9]+]] {
13
__attribute__((target_version("bti"))) int fmv(void) { return 0; }
0 commit comments