Skip to content

Commit 9f85af5

Browse files
committed
[LLVM][ARM] Correct llvm feature for vfpv3d16 host feature
d16 was removed in https://reviews.llvm.org/D60691. Reviewed By: efriedma Differential Revision: https://reviews.llvm.org/D139304
1 parent 7c7e39d commit 9f85af5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/Host.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
17891789
.Case("half", "fp16")
17901790
.Case("neon", "neon")
17911791
.Case("vfpv3", "vfp3")
1792-
.Case("vfpv3d16", "d16")
1792+
.Case("vfpv3d16", "vfp3d16")
17931793
.Case("vfpv4", "vfp4")
17941794
.Case("idiva", "hwdiv-arm")
17951795
.Case("idivt", "hwdiv")

0 commit comments

Comments
 (0)