[Lldb-commits] [clang] [lldb] [llvm] [llvm][TargetParser] Return StringMap from getHostCPUFeatures (PR #97824)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Jul 11 02:32:36 PDT 2024


================
@@ -20,16 +20,15 @@ using namespace llvm;
 int main(int argc, char **argv) {
 #if defined(__i386__) || defined(_M_IX86) || \
     defined(__x86_64__) || defined(_M_X64)
-  StringMap<bool> features;
-
-  if (!sys::getHostCPUFeatures(features))
+  const StringMap<bool> features = sys::getHostCPUFeatures(features);
+  if (features.empty())
     return 1;
 
-  if (features["sse"])
+  if (features->lookup("sse"))
----------------
DavidSpickett wrote:

It doesn't, I forgot to rebuild on x86. Fixed this and removed the parameter that's no longer needed.

https://github.com/llvm/llvm-project/pull/97824


More information about the lldb-commits mailing list