summaryrefslogtreecommitdiff
path: root/lib/Basic/Module.cpp
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2016-01-29 19:38:18 +0000
committerYaron Keren <yaron.keren@gmail.com>2016-01-29 19:38:18 +0000
commitdcbc03e44635014437d6745bc8bef7ae066c945b (patch)
tree2a4d0e0487259adafa5b7d34d0ce649bfec026f4 /lib/Basic/Module.cpp
parente74c270bbcf191d3a251adad8c167fbb6dc07ef0 (diff)
downloadclang-dcbc03e44635014437d6745bc8bef7ae066c945b.tar.gz
Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r259192 post commit comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@259232 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Module.cpp')
-rw-r--r--lib/Basic/Module.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Basic/Module.cpp b/lib/Basic/Module.cpp
index 0b78326369..baeeb9edbd 100644
--- a/lib/Basic/Module.cpp
+++ b/lib/Basic/Module.cpp
@@ -486,7 +486,7 @@ void Module::print(raw_ostream &OS, unsigned Indent) const {
OS << "}\n";
}
-void Module::dump() const {
+LLVM_DUMP_METHOD void Module::dump() const {
print(llvm::errs());
}