[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Execution.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 14 19:48:01 PDT 2004



Changes in directory llvm/lib/ExecutionEngine/Interpreter:

Execution.cpp updated: 1.130 -> 1.131

---
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.130 llvm/lib/ExecutionEngine/Interpreter/Execution.cpp:1.131
--- llvm/lib/ExecutionEngine/Interpreter/Execution.cpp:1.130	Wed Jul 14 21:44:03 2004
+++ llvm/lib/ExecutionEngine/Interpreter/Execution.cpp	Wed Jul 14 21:47:51 2004
@@ -421,7 +421,7 @@
     IMPLEMENT_SETCC(<=, Double);
     IMPLEMENT_POINTERSETCC(<=);
   default:
-    std::cout << "Unhandled type for SetLE instruction: " << Ty << "\n";
+    std::cout << "Unhandled type for SetLE instruction: " << *Ty << "\n";
     abort();
   }
   return Dest;
@@ -941,7 +941,7 @@
       IMPLEMENT_CAST(DESTTY, DESTCTY, Double)
 
 #define IMPLEMENT_CAST_CASE_END()    \
-    default: std::cout << "Unhandled cast: " << SrcTy << " to " << Ty << "\n"; \
+    default: std::cout << "Unhandled cast: " << *SrcTy << " to " << *Ty << "\n"; \
       abort();                                  \
     }                                           \
     break





More information about the llvm-commits mailing list