Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[llvm][TargetParser] Return StringMap from getHostCPUFeatures #97824

Merged
merged 9 commits into from
Jul 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
DavidSpickett committed Jul 10, 2024
commit f0510783a78dfab062b287a893d0fdb08de9eeaf
2 changes: 1 addition & 1 deletion lldb/utils/lit-cpuid/lit-cpuid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ using namespace llvm;
int main(int argc, char **argv) {
#if defined(__i386__) || defined(_M_IX86) || \
defined(__x86_64__) || defined(_M_X64)
const < StringMap<bool> features = sys::getHostCPUFeatures(features);
const StringMap<bool> features = sys::getHostCPUFeatures(features);
if (features.empty())
return 1;

Expand Down