[llvm-commits] CVS: llvm/include/llvm/Support/PassNameParser.h

Chris Lattner lattner at cs.uiuc.edu
Thu Apr 24 13:42:01 PDT 2003


Changes in directory llvm/include/llvm/Support:

PassNameParser.h updated: 1.4 -> 1.5

---
Log message:

Remove support for "targetdata pass ctors"


---
Diffs of the changes:

Index: llvm/include/llvm/Support/PassNameParser.h
diff -u llvm/include/llvm/Support/PassNameParser.h:1.4 llvm/include/llvm/Support/PassNameParser.h:1.5
--- llvm/include/llvm/Support/PassNameParser.h:1.4	Fri Dec  6 22:41:22 2002
+++ llvm/include/llvm/Support/PassNameParser.h	Thu Apr 24 13:41:13 2003
@@ -48,8 +48,7 @@
     // Ignore non-selectable and non-constructible passes!  Ignore
     // non-optimizations.
     return P->getPassArgument() == 0 || *P->getPassArgument() == 0 ||
-          (P->getNormalCtor() == 0 && P->getDataCtor() == 0 &&
-           P->getTargetCtor() == 0) ||
+          (P->getNormalCtor() == 0 && P->getTargetCtor() == 0) ||
           ignorablePassImpl(P);
   }
 





More information about the llvm-commits mailing list