From: Chris Lattner Date: Thu, 12 Jul 2001 23:35:11 +0000 (+0000) Subject: Made it not inline X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ec0c497877f8019e07e47d8bfd8f8d34c45c5d5c;p=oota-llvm.git Made it not inline git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 6c7addd283f..da247f6b51e 100644 --- a/include/llvm/Assembly/Writer.h +++ b/include/llvm/Assembly/Writer.h @@ -88,8 +88,6 @@ inline ostream &operator<<(ostream &o, const Value *I) { return o; } -inline void DebugValue(const Value *V) { - cerr << V << endl; -} +void DebugValue(const Value *V); #endif