Use llvm::raw_stream instead of llvm::Streams.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71573 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/tutorial/JITTutorial1.html b/docs/tutorial/JITTutorial1.html
index b063848..ac3958e 100644
--- a/docs/tutorial/JITTutorial1.html
+++ b/docs/tutorial/JITTutorial1.html
@@ -61,6 +61,7 @@
 #include "llvm/Analysis/Verifier.h"
 #include "llvm/Assembly/PrintModulePass.h"
 #include "llvm/Support/IRBuilder.h"
+#include "llvm/Support/raw_ostream.h"
 </pre>
 </div>
 
@@ -78,7 +79,7 @@
   verifyModule(*Mod, PrintMessageAction);
 
   PassManager PM;
-  PM.add(createPrintModulePass(&amp;llvm::cout));
+  PM.add(createPrintModulePass(&amp;outs()));
   PM.run(*Mod);
 
   delete Mod;