From c1d7384cb0d6ecb0be2ec0f07a5c44d5e950cfbd Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 6 Jun 2007 10:15:28 +0000 Subject: [PATCH] Added clobbersPred. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37466 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 36a8f2a354c..d646e28c1d1 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -188,6 +188,7 @@ class Instruction { bit usesCustomDAGSchedInserter = 0; // Pseudo instr needing special help. bit hasCtrlDep = 0; // Does this instruction r/w ctrl-flow chains? bit noResults = 0; // Does this instruction produce no results? + bit clobbersPred = 0; // Does it clobbers condition code / predicate? InstrItinClass Itinerary = NoItinerary;// Execution steps used for scheduling. -- 2.34.1