[llvm] 8781dbe - [VE] Enable vpu feature by default in llc
Kazushi Marukawa via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 14 16:32:21 PDT 2023
Author: Kazushi (Jam) Marukawa
Date: 2023-08-15T08:32:12+09:00
New Revision: 8781dbe5110334f702955d2e15aa6dd5437002ff
URL: https://github.com/llvm/llvm-project/commit/8781dbe5110334f702955d2e15aa6dd5437002ff
DIFF: https://github.com/llvm/llvm-project/commit/8781dbe5110334f702955d2e15aa6dd5437002ff.diff
LOG: [VE] Enable vpu feature by default in llc
Enable vpu feature by default in the backend.
Reviewed By: efocht
Differential Revision: https://reviews.llvm.org/D157887
Added:
Modified:
llvm/lib/Target/VE/VE.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/VE/VE.td b/llvm/lib/Target/VE/VE.td
index 1cb4a642632cb2..bb076bd9f6d411 100644
--- a/llvm/lib/Target/VE/VE.td
+++ b/llvm/lib/Target/VE/VE.td
@@ -46,7 +46,7 @@ def VEAsmParser : AsmParser {
class Proc<string Name, list<SubtargetFeature> Features>
: Processor<Name, NoItineraries, Features>;
-def : Proc<"generic", []>;
+def : Proc<"generic", [FeatureEnableVPU]>;
//===----------------------------------------------------------------------===//
// Declare the target which we are implementing
More information about the llvm-commits
mailing list