[PATCH] D95966: [AIX][support] Implement getHostCPUName
Hubert Tong via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 4 16:56:51 PST 2021
hubert.reinterpretcast added inline comments.
================
Comment at: llvm/lib/Support/Host.cpp:1227-1232
+ case POWER_4:
+ return "pwr4";
+ case POWER_5:
+ return "pwr5";
+ case POWER_6:
+ return "pwr6";
----------------
I'm not entirely sure that "something is better than nothing" is necessarily true here for these. All three have variant implementations/modes (e.g., ppc970, pwr5x, pwr6e) that we aren't handling here.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D95966/new/
https://reviews.llvm.org/D95966
More information about the llvm-commits
mailing list