Made it not inline
[oota-llvm.git] / include / llvm / Assembly / Writer.h
index fd13f779cbfe4df47c978f4239c6d3bd3392daac..da247f6b51e2591f83638ab155b69be941aef6e6 100644 (file)
@@ -1,6 +1,6 @@
-//===-- llvm/assembly/Writer.h - Printer for VM assembly files ---*- C++ -*--=//
+//===-- llvm/Assembly/Writer.h - Printer for VM assembly files ---*- C++ -*--=//
 //
-// This functionality is implemented by the lib/AssemblyWriter library.
+// This functionality is implemented by the lib/Assembly/Writer library.
 // This library is used to print VM assembly language files to an iostream. It
 // can print VM code at a variety of granularities, ranging from a whole class
 // down to an individual instruction.  This makes it useful for debugging.
@@ -88,4 +88,6 @@ inline ostream &operator<<(ostream &o, const Value *I) {
   return o;
 }
 
+void DebugValue(const Value *V);
+
 #endif