Changes in directory llvm/include/llvm/CodeGen:

MachineInstr.h updated: 1.219 -> 1.220
---
Log message:

Rename M_PREDICATED to M_PREDICABLE; Move TargetInstrInfo::isPredicatable() to 
MachineInstr::isPredicable().

---
Diffs of the changes:  (+4 -0)

 MachineInstr.h |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.219 
llvm/include/llvm/CodeGen/MachineInstr.h:1.220
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.219      Mon May 14 20:25:06 2007
+++ llvm/include/llvm/CodeGen/MachineInstr.h    Wed May 16 15:43:42 2007
@@ -394,6 +394,10 @@
     return true;
   }
 
+  /// isPredicable - True if the instruction can be converted into a
+  /// predicated instruction.
+  bool isPredicable() const;
+
   /// clone - Create a copy of 'this' instruction that is identical in
   /// all ways except the the instruction has no parent, prev, or next.
   MachineInstr* clone() const { return new MachineInstr(*this); }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to