[llvm-commits] CVS: llvm/lib/VMCore/PassManagerT.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Jan 14 07:53:42 PST 2005
Changes in directory llvm/lib/VMCore:
PassManagerT.h updated: 1.55 -> 1.56
---
Log message:
Make this compatible with the HP/intel compiler. Fix by Duraid, thanks!
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/VMCore/PassManagerT.h
diff -u llvm/lib/VMCore/PassManagerT.h:1.55 llvm/lib/VMCore/PassManagerT.h:1.56
--- llvm/lib/VMCore/PassManagerT.h:1.55 Wed Dec 8 10:22:48 2004
+++ llvm/lib/VMCore/PassManagerT.h Fri Jan 14 09:53:26 2005
@@ -142,7 +142,7 @@
typedef typename Traits::BatcherClass BatcherClass;
typedef typename Traits::ParentClass ParentClass;
-#if defined(_MSC_VER) || defined(__INTEL_COMPILER)
+#if defined(_MSC_VER) || defined(__INTEL_COMPILER) || defined(__HP_aCC)
friend PassClass;
friend SubPassClass;
#else
More information about the llvm-commits
mailing list