Changes in directory llvm/lib/Target:

TargetInstrInfo.cpp updated: 1.23 -> 1.24
---
Log message:

Match TargetInstrInfo changes.

---
Diffs of the changes:  (+1 -1)

 TargetInstrInfo.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/TargetInstrInfo.cpp
diff -u llvm/lib/Target/TargetInstrInfo.cpp:1.23 
llvm/lib/Target/TargetInstrInfo.cpp:1.24
--- llvm/lib/Target/TargetInstrInfo.cpp:1.23    Thu Nov 30 01:10:43 2006
+++ llvm/lib/Target/TargetInstrInfo.cpp Fri Dec  1 15:50:57 2006
@@ -32,7 +32,7 @@
   for (unsigned i = 0, e = getNumOperands(Opc); i != e; ++i) {
     if (i == OpNum)
       continue;
-    int ti = getOperandConstraint(Opc, i, TIED_TO);
+    int ti = getOperandConstraint(Opc, i, TOI::TIED_TO);
     if (ti == (int)OpNum)
       return i;
   }



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

Reply via email to