[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Jul 14 19:44:14 PDT 2004
Changes in directory llvm/lib/ExecutionEngine/Interpreter:
Execution.cpp updated: 1.129 -> 1.130
---
Log message:
Fixes for PR341: http://llvm.cs.uiuc.edu/PR341
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
diff -u llvm/lib/ExecutionEngine/Interpreter/Execution.cpp:1.129 llvm/lib/ExecutionEngine/Interpreter/Execution.cpp:1.130
--- llvm/lib/ExecutionEngine/Interpreter/Execution.cpp:1.129 Sun Jun 20 02:46:33 2004
+++ llvm/lib/ExecutionEngine/Interpreter/Execution.cpp Wed Jul 14 21:44:03 2004
@@ -146,7 +146,7 @@
getOperandValue(CE->getOperand(1), SF),
getOperandValue(CE->getOperand(2), SF));
default:
- std::cerr << "Unhandled ConstantExpr: " << CE << "\n";
+ std::cerr << "Unhandled ConstantExpr: " << *CE << "\n";
abort();
return GenericValue();
}
@@ -236,7 +236,7 @@
IMPLEMENT_BINARY_OPERATOR(*, Float);
IMPLEMENT_BINARY_OPERATOR(*, Double);
default:
- std::cout << "Unhandled type for Mul instruction: " << Ty << "\n";
+ std::cout << "Unhandled type for Mul instruction: " << *Ty << "\n";
abort();
}
return Dest;
More information about the llvm-commits
mailing list