[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h
    Evan Cheng 
    evan.cheng at apple.com
       
    Wed May 16 13:44:00 PDT 2007
    
    
  
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); }
    
    
More information about the llvm-commits
mailing list