Skip to content

Commit

Permalink
[LLVM][ARM] Correct llvm feature for vfpv3d16 host feature
Browse files Browse the repository at this point in the history
d16 was removed in https://reviews.llvm.org/D60691.

Reviewed By: efriedma

Differential Revision: https://reviews.llvm.org/D139304
  • Loading branch information
DavidSpickett committed Dec 6, 2022
1 parent 7c7e39d commit 9f85af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Support/Host.cpp
Expand Up @@ -1789,7 +1789,7 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
.Case("half", "fp16")
.Case("neon", "neon")
.Case("vfpv3", "vfp3")
.Case("vfpv3d16", "d16")
.Case("vfpv3d16", "vfp3d16")
.Case("vfpv4", "vfp4")
.Case("idiva", "hwdiv-arm")
.Case("idivt", "hwdiv")
Expand Down

0 comments on commit 9f85af5

Please sign in to comment.