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 | 58dda9a8f2ad7056cddc389a1d730b732b7ab6f1 (patch) | |
tree | d38f29f3e7964f135587d0a8b7d8735f0ee811e6 /include | |
parent | 09674a297b71e785d433068790fdbc646ba3c35b (diff) | |
download | external_llvm-58dda9a8f2ad7056cddc389a1d730b732b7ab6f1.zip external_llvm-58dda9a8f2ad7056cddc389a1d730b732b7ab6f1.tar.gz external_llvm-58dda9a8f2ad7056cddc389a1d730b732b7ab6f1.tar.bz2 |
Add Module::dump() method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Module.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index afb20d3..a9e3aba 100644 --- a/include/llvm/Module.h +++ b/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 |