Make this compatible with the HP/intel compiler. Fix by Duraid, thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19548 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-14 15:53:26 +00:00
parent ae192d3558
commit 9a791eaf8f

View File

@ -142,7 +142,7 @@ class PassManagerT : public PassManagerTraits<UnitType>,public AnalysisResolver{
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