[llvm] ed88d96 - [RISCV] Use the extensions in the canonical order (NFC)
Evandro Menezes via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 5 14:04:43 PDT 2020
Author: Evandro Menezes
Date: 2020-10-05T15:50:57-05:00
New Revision: ed88d962953c52c76d568d90fe2d5546ea6ab543
URL: https://github.com/llvm/llvm-project/commit/ed88d962953c52c76d568d90fe2d5546ea6ab543
DIFF: https://github.com/llvm/llvm-project/commit/ed88d962953c52c76d568d90fe2d5546ea6ab543.diff
LOG: [RISCV] Use the extensions in the canonical order (NFC)
Fix a mistake in the ordering.
Added:
Modified:
llvm/lib/Target/RISCV/RISCV.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCV.td b/llvm/lib/Target/RISCV/RISCV.td
index 66eda3ba360c..240dad1ed5ca 100644
--- a/llvm/lib/Target/RISCV/RISCV.td
+++ b/llvm/lib/Target/RISCV/RISCV.td
@@ -237,8 +237,8 @@ def : ProcessorModel<"sifive-e31", RocketModel, [FeatureStdExtM,
def : ProcessorModel<"sifive-u54", RocketModel, [Feature64Bit,
FeatureStdExtM,
- FeatureStdExtF,
FeatureStdExtA,
+ FeatureStdExtF,
FeatureStdExtD,
FeatureStdExtC]>;
More information about the llvm-commits
mailing list