From: Craig Topper Date: Wed, 28 Dec 2016 03:12:42 +0000 (+0000) Subject: [InstCombine] Remove a piece of a comment that said that InstCombiner contains pass... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=115afb926376b59cc681678a12d0a0e02c34aa33;p=llvm [InstCombine] Remove a piece of a comment that said that InstCombiner contains pass infrastructure. That hasn't been true since r226618. NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290648 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/InstCombine/InstCombineInternal.h b/lib/Transforms/InstCombine/InstCombineInternal.h index d13b94cb6c9..3cefe715e56 100644 --- a/lib/Transforms/InstCombine/InstCombineInternal.h +++ b/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 { // FIXME: These members shouldn't be public.