diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-17 23:32:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-17 23:32:42 +0000 |
commit | b6a0873bd898dffeb6d7bd3f50be98a6e99099eb (patch) | |
tree | b2f1410aa64d496782227b02faab59d4f542fc08 | |
parent | 1c26440b54b1659aacd443840b1475c56ad2f68e (diff) | |
download | bcm5719-llvm-b6a0873bd898dffeb6d7bd3f50be98a6e99099eb.tar.gz bcm5719-llvm-b6a0873bd898dffeb6d7bd3f50be98a6e99099eb.zip |
Add Module::dump() method
llvm-svn: 3374
-rw-r--r-- | llvm/include/llvm/Module.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Module.h b/llvm/include/llvm/Module.h index afb20d3df17..a9e3aba1d5a 100644 --- a/llvm/include/llvm/Module.h +++ b/llvm/include/llvm/Module.h @@ -157,6 +157,7 @@ public: inline Function &back() { return FunctionList.back(); } void print(std::ostream &OS) const; + void dump() const; // dropAllReferences() - This function causes all the subinstructions to "let // go" of all references that they are maintaining. This allows one to |