From: Vikram S. Adve Date: Mon, 16 Sep 2002 16:01:41 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=46fece70c231ed5103253d1e151d4ad4fc1e129a;p=oota-llvm.git *** empty log message *** git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3749 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/PassNameParser.h b/include/llvm/Support/PassNameParser.h index ba53f8237a8..81242c3b378 100644 --- a/include/llvm/Support/PassNameParser.h +++ b/include/llvm/Support/PassNameParser.h @@ -47,7 +47,8 @@ public: // Ignore non-selectable and non-constructible passes! Ignore // non-optimizations. return P->getPassArgument() == 0 || - (P->getNormalCtor() == 0 && P->getDataCtor() == 0) || + (P->getNormalCtor() == 0 && P->getDataCtor() == 0 && + P->getTargetCtor() == 0) || ignorablePassImpl(P); }