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

vadve at cs.uiuc.edu vadve at cs.uiuc.edu
Mon Sep 16 11:05:14 PDT 2002


Changes in directory llvm/include/llvm/Support:

PassNameParser.h updated: 1.1 -> 1.2

---
Log message:


---
Diffs of the changes:

Index: llvm/include/llvm/Support/PassNameParser.h
diff -u llvm/include/llvm/Support/PassNameParser.h:1.1 llvm/include/llvm/Support/PassNameParser.h:1.2
--- llvm/include/llvm/Support/PassNameParser.h:1.1	Fri Jul 26 16:09:10 2002
+++ llvm/include/llvm/Support/PassNameParser.h	Mon Sep 16 11:01:41 2002
@@ -47,7 +47,8 @@
     // 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);
   }
 





More information about the llvm-commits mailing list