diff options
author | Craig Topper <craig.topper@gmail.com> | 2016-12-28 03:12:42 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2016-12-28 03:12:42 +0000 |
commit | 28ec3460e4320743c5f78b1550b72720007b339a (patch) | |
tree | 9df02cc6c7c0a70bee8d033d3c9d5e82031f2526 /llvm/lib | |
parent | 57aae07b4a31a5843fc6c808855ba138d62e7f23 (diff) | |
download | bcm5719-llvm-28ec3460e4320743c5f78b1550b72720007b339a.tar.gz bcm5719-llvm-28ec3460e4320743c5f78b1550b72720007b339a.zip |
[InstCombine] Remove a piece of a comment that said that InstCombiner contains pass infrastructure. That hasn't been true since r226618. NFC
llvm-svn: 290648
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineInternal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h index d13b94cb6c9..3cefe715e56 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineInternal.h +++ b/llvm/lib/Transforms/InstCombine/InstCombineInternal.h @@ -156,8 +156,7 @@ IntrinsicIDToOverflowCheckFlavor(unsigned ID) { /// \brief The core instruction combiner logic. /// /// This class provides both the logic to recursively visit instructions and -/// combine them, as well as the pass infrastructure for running this as part -/// of the LLVM pass pipeline. +/// combine them. class LLVM_LIBRARY_VISIBILITY InstCombiner : public InstVisitor<InstCombiner, Instruction *> { // FIXME: These members shouldn't be public. |