From e2e9e44d8ff4a37004cd727036c966b8550d6a8d Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 19 Mar 2007 06:22:07 +0000 Subject: [PATCH] Added isReMaterializable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35160 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Target.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/Target.td b/lib/Target/Target.td index fbc972a2928..b1ef5c93579 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -165,6 +165,7 @@ class Instruction { bit isConvertibleToThreeAddress = 0; // Can this 2-addr instruction promote? bit isCommutable = 0; // Is this 3 operand instruction commutable? bit isTerminator = 0; // Is this part of the terminator for a basic block? + bit isReMaterializable = 0; // Is this instruction re-materializable? bit hasDelaySlot = 0; // Does this instruction have an delay slot? bit usesCustomDAGSchedInserter = 0; // Pseudo instr needing special help. bit hasCtrlDep = 0; // Does this instruction r/w ctrl-flow chains? -- 2.34.1