aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Pass.h4
-rw-r--r--lib/VMCore/Pass.cpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index 8243d2aa25..5948922f66 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -88,9 +88,7 @@ public:
/// getPassName - Return a nice clean name for a pass. This usually
/// implemented in terms of the name that is registered by one of the
- /// Registration templates, but can be overloaded directly, and if nothing
- /// else is available, C++ RTTI will be consulted to get a SOMEWHAT
- /// intelligible name for the pass.
+ /// Registration templates, but can be overloaded directly.
///
virtual const char *getPassName() const;
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp
index e3d94c3505..a6f126ab61 100644
--- a/lib/VMCore/Pass.cpp
+++ b/lib/VMCore/Pass.cpp
@@ -43,8 +43,10 @@ void Pass::dumpPassStructure(unsigned Offset) {
cerr << std::string(Offset*2, ' ') << getPassName() << "\n";
}
-// getPassName - Use C++ RTTI to get a SOMEWHAT intelligible name for the pass.
-//
+/// getPassName - Return a nice clean name for a pass. This usually
+/// implemented in terms of the name that is registered by one of the
+/// Registration templates, but can be overloaded directly.
+///
const char *Pass::getPassName() const {
if (const PassInfo *PI = getPassInfo())
return PI->getPassName();