From 9f85af54d7363139fc6afc6403a224bc0a1b4c03 Mon Sep 17 00:00:00 2001 From: David Spickett Date: Mon, 5 Dec 2022 10:10:42 +0000 Subject: [PATCH] [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 --- llvm/lib/Support/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index c87d9644d0979..adcdb6355c8c0 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -1789,7 +1789,7 @@ bool sys::getHostCPUFeatures(StringMap &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")