C'mon everybody, let's modify X86JITInfo.cpp. This time, we add <iostream>
authorNate Begeman <natebegeman@mac.com>
Fri, 20 May 2005 21:29:24 +0000 (21:29 +0000)
committerNate Begeman <natebegeman@mac.com>
Fri, 20 May 2005 21:29:24 +0000 (21:29 +0000)
so that the shiny new use of std::cerr is defined.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22156 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86JITInfo.cpp

index 4766e1f33340186bcf166a76bf6752289acc1673..d8ca53ea0278ec9ac6fd452dc7ce5b4c3d434c66 100644 (file)
 //===----------------------------------------------------------------------===//
 
 #define DEBUG_TYPE "jit"
-#include <cstdlib>
 #include "X86JITInfo.h"
 #include "X86Relocations.h"
 #include "llvm/CodeGen/MachineCodeEmitter.h"
 #include "llvm/Config/alloca.h"
+#include <cstdlib>
+#include <iostream>
 using namespace llvm;
 
 void X86JITInfo::replaceMachineCodeForFunction(void *Old, void *New) {