summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-07-12 23:35:26 +0000
committerChris Lattner <sabre@nondot.org>2001-07-12 23:35:26 +0000
commitd8c2e42aeff8bdb3ac905b4721b3d3ca1f904cfa (patch)
treeab3443c421bb9d90291f4d27c6cf7e5f557c3452 /lib
parentec0c497877f8019e07e47d8bfd8f8d34c45c5d5c (diff)
downloadllvm-d8c2e42aeff8bdb3ac905b4721b3d3ca1f904cfa.tar.gz
llvm-d8c2e42aeff8bdb3ac905b4721b3d3ca1f904cfa.tar.bz2
llvm-d8c2e42aeff8bdb3ac905b4721b3d3ca1f904cfa.tar.xz
Add DebugValue member.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/AsmWriter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index d84cba0752..5a4e6f5557 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/lib/VMCore/AsmWriter.cpp
@@ -19,6 +19,11 @@
#include "llvm/iOther.h"
#include "llvm/iMemory.h"
+void DebugValue(const Value *V) {
+ cerr << V << endl;
+}
+
+
class AssemblyWriter : public ModuleAnalyzer {
ostream &Out;
SlotCalculator &Table;