summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-12 23:35:11 +0000
committerChris Lattner <sabre@nondot.org>2001-07-12 23:35:11 +0000
commitec0c497877f8019e07e47d8bfd8f8d34c45c5d5c (patch)
tree15dee525780c7c08d93700c7972011b2cd35922a /include/llvm/Assembly
parentb144fb872c41d85aea501a7f5051986a072c7c45 (diff)
downloadllvm-ec0c497877f8019e07e47d8bfd8f8d34c45c5d5c.tar.gz
llvm-ec0c497877f8019e07e47d8bfd8f8d34c45c5d5c.tar.bz2
llvm-ec0c497877f8019e07e47d8bfd8f8d34c45c5d5c.tar.xz
Made it not inline
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Writer.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h
index 6c7addd283..da247f6b51 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