Add #include of <iostream>
authorChris Lattner <sabre@nondot.org>
Sun, 22 Jan 2006 23:41:42 +0000 (23:41 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 22 Jan 2006 23:41:42 +0000 (23:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25516 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/JIT/JITEmitter.cpp

index 477a0e0da7cbd989189807899e2b95bf9d0be387..fb204715efa55246ec760c430f364c49855cbb7d 100644 (file)
@@ -26,8 +26,9 @@
 #include "llvm/Support/Debug.h"
 #include "llvm/ADT/Statistic.h"
 #include "llvm/System/Memory.h"
-#include <list>
 #include <algorithm>
+#include <iostream>
+#include <list>
 using namespace llvm;
 
 namespace {