[PATCH] D118294: [RISCV] Remove unused flags from FeatureKind in TargetParser.h. NFC
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 26 18:38:32 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG5844d29e7686: [RISCV] Remove unused flags from FeatureKind in TargetParser.h. NFC (authored by craig.topper).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D118294/new/
https://reviews.llvm.org/D118294
Files:
llvm/include/llvm/Support/TargetParser.h
Index: llvm/include/llvm/Support/TargetParser.h
===================================================================
--- llvm/include/llvm/Support/TargetParser.h
+++ llvm/include/llvm/Support/TargetParser.h
@@ -158,12 +158,7 @@
enum FeatureKind : unsigned {
FK_INVALID = 0,
FK_NONE = 1,
- FK_STDEXTM = 1 << 2,
- FK_STDEXTA = 1 << 3,
- FK_STDEXTF = 1 << 4,
- FK_STDEXTD = 1 << 5,
- FK_STDEXTC = 1 << 6,
- FK_64BIT = 1 << 7,
+ FK_64BIT = 1 << 2,
};
bool checkCPUKind(CPUKind Kind, bool IsRV64);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118294.403462.patch
Type: text/x-patch
Size: 510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220127/18dd57f3/attachment.bin>
More information about the llvm-commits
mailing list