[PATCH] D100085: [X86] Support -march=rocketlake

Kan Shengchen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 8 19:37:24 PDT 2021


skan added inline comments.


================
Comment at: llvm/lib/Support/X86TargetParser.cpp:293-301
+    // Empty processor. Include X87 and CMPXCHG8 for backwards compatibility.
+    {{""}, CK_None, ~0U, FeatureX87 | FeatureCMPXCHG8B},
+    // i386-generation processors.
+    {{"i386"}, CK_i386, ~0U, FeatureX87},
+    // i486-generation processors.
+    {{"i486"}, CK_i486, ~0U, FeatureX87},
+    {{"winchip-c6"}, CK_WinChipC6, ~0U, FeaturesPentiumMMX},
----------------
It's not correct to format here in this patch and do not mix tab with space.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D100085/new/

https://reviews.llvm.org/D100085



More information about the llvm-commits mailing list