From: Chris Lattner Date: Fri, 14 Jan 2005 15:53:26 +0000 (+0000) Subject: Make this compatible with the HP/intel compiler. Fix by Duraid, thanks! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9a791eaf8f6d2cb98d0011fe2cb27f426811554d;hp=ae192d3558bcd223998baa19bc192a0d9f867f5a;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/PassManagerT.h b/lib/VMCore/PassManagerT.h index 9cd38b9f3ea..8b3425adc3b 100644 --- a/lib/VMCore/PassManagerT.h +++ b/lib/VMCore/PassManagerT.h @@ -142,7 +142,7 @@ class PassManagerT : public PassManagerTraits,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