Removed debug print statement.
[oota-llvm.git] / lib / ExecutionEngine / JIT / JITEmitter.cpp
index 735244f79df75dde31b181b311a09bb5aa09d5b1..4a58792afcc9053a24fb532f8b32717c3c2f3d5b 100644 (file)
@@ -80,7 +80,6 @@ static void *getMemory(unsigned NumPages) {
             PROT_READ|PROT_WRITE|PROT_EXEC,
             MAP_PRIVATE|MAP_ANON|MAP_FIXED, -1, 0); /* fd = -1 */
   Counter += pageSize*NumPages;
-  std::cerr << "getMemory() returning " << pa << "\n";
 #else
   std::cerr << "This architecture is not supported by the JIT\n";
   abort();