Changes in directory llvm/lib/Target:

TargetLowering.cpp updated: 1.33 -> 1.34
---
Log message:

Updates to match change of getRegForInlineAsmConstraint prototype


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

 TargetLowering.cpp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.33 
llvm/lib/Target/TargetLowering.cpp:1.34
--- llvm/lib/Target/TargetLowering.cpp:1.33     Fri Feb 17 20:43:25 2006
+++ llvm/lib/Target/TargetLowering.cpp  Tue Feb 21 17:11:00 2006
@@ -745,7 +745,8 @@
 
 
 std::vector<unsigned> TargetLowering::
-getRegForInlineAsmConstraint(const std::string &Constraint) const {
+getRegForInlineAsmConstraint(const std::string &Constraint,
+                             MVT::ValueType VT) const {
   // Not a physreg, must not be a register reference or something.
   if (Constraint[0] != '{') return std::vector<unsigned>();
   assert(*(Constraint.end()-1) == '}' && "Not a brace enclosed constraint?");



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

Reply via email to