Forgot to commit this file.
[oota-llvm.git] / include / llvm / Value.h
index 2d6351d5304e0ad4aa24b844e5e9b48e866d8bf6..af90b91c3bfba2f8bd51f6608796b6d83c7c299b 100644 (file)
@@ -18,7 +18,7 @@
 #include "llvm/AbstractTypeUser.h"
 #include "llvm/Use.h"
 #include "llvm/Support/Casting.h"
-#include "llvm/Support/Streams.h"
+#include <iosfwd>
 #include <string>
 
 namespace llvm {
@@ -232,7 +232,7 @@ inline std::ostream &operator<<(std::ostream &OS, const Value &V) {
   return OS;
 }
 
-void Use::init(Value *V, User *user) {
+void Use::init(Value *V, User *) {
   Val = V;
   if (V) V->addUse(*this);
 }