X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FTarget%2FTarget.td;h=94ae94a14b57e2808b683a46c03e3d770a13cf33;hb=617dd7baa6dfd3a7b5ee72ace37f6b6aeaa6006b;hp=3f1cdd27ca394679380470a8ec7fc82254484d94;hpb=874ae251c317788391f9c3f113957802d390a063;p=oota-llvm.git diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td index 3f1cdd27ca3..94ae94a14b5 100644 --- a/include/llvm/Target/Target.td +++ b/include/llvm/Target/Target.td @@ -274,6 +274,7 @@ def unknown; class Operand { ValueType Type = ty; string PrintMethod = "printOperand"; + string AsmOperandLowerMethod = ?; dag MIOperandInfo = (ops); } @@ -301,8 +302,8 @@ class PredicateOperand } /// OptionalDefOperand - This is used to define a optional definition operand -/// for an instruction. DefaultOps is the register the operand represents if none -/// is supplied, e.g. zero_reg. +/// for an instruction. DefaultOps is the register the operand represents if +/// none is supplied, e.g. zero_reg. class OptionalDefOperand : Operand { let MIOperandInfo = OpTypes;