diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-09-16 16:01:41 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-09-16 16:01:41 +0000 |
commit | 46fece70c231ed5103253d1e151d4ad4fc1e129a (patch) | |
tree | 1d44e604a2c86a0e9e40206b31fb8f3685a5a091 /include/llvm | |
parent | a081baac7726cfa49cc0879230feba258053600c (diff) | |
download | external_llvm-46fece70c231ed5103253d1e151d4ad4fc1e129a.zip external_llvm-46fece70c231ed5103253d1e151d4ad4fc1e129a.tar.gz external_llvm-46fece70c231ed5103253d1e151d4ad4fc1e129a.tar.bz2 |
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Support/PassNameParser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/PassNameParser.h b/include/llvm/Support/PassNameParser.h index ba53f82..81242c3 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); } |