Add #include <iostream> since Value.h does not include it any more.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14623 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 42f1d38..62b4a3a 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -22,8 +22,9 @@
 #include "llvm/Pass.h"
 #include "Support/CommandLine.h"
 #include "llvm/System/Signals.h"
-#include <memory>
 #include <fstream>
+#include <iostream>
+#include <memory>
 
 using namespace llvm;