[llvm] 447efdb - [VE] Minimum MC layer for VE (2/4)
Simon Moll via llvm-commits
llvm-commits at lists.llvm.org
Thu May 7 04:22:13 PDT 2020
Author: Kazushi (Jam) Marukawa
Date: 2020-05-07T13:21:37+02:00
New Revision: 447efdb52bd3b7fd5707f670060c5fcc813787e1
URL: https://github.com/llvm/llvm-project/commit/447efdb52bd3b7fd5707f670060c5fcc813787e1
DIFF: https://github.com/llvm/llvm-project/commit/447efdb52bd3b7fd5707f670060c5fcc813787e1.diff
LOG: [VE] Minimum MC layer for VE (2/4)
Remove unnecessary EncoderMethod and DecoderMethod which cause errors in
supporting MC layer.
Differential Revision: https://reviews.llvm.org/D79544
Added:
Modified:
llvm/lib/Target/VE/VEInstrInfo.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/VE/VEInstrInfo.td b/llvm/lib/Target/VE/VEInstrInfo.td
index 14c067f64627..87c8015c775b 100644
--- a/llvm/lib/Target/VE/VEInstrInfo.td
+++ b/llvm/lib/Target/VE/VEInstrInfo.td
@@ -368,12 +368,9 @@ def MEMziASX : Operand<iPTR> {
// Branch targets have OtherVT type.
def brtarget32 : Operand<OtherVT> {
- let EncoderMethod = "getBranchTarget32OpValue";
}
def calltarget : Operand<i64> {
- let EncoderMethod = "getCallTargetOpValue";
- let DecoderMethod = "DecodeCall";
}
// Operand for printing out a condition code.
More information about the llvm-commits
mailing list