GBE: Fix one build error of friend declaration for a class.
authorChuanbo Weng <chuanbo.weng@intel.com>
Tue, 6 May 2014 10:48:26 +0000 (18:48 +0800)
committerZhigang Gong <zhigang.gong@intel.com>
Tue, 6 May 2014 04:49:21 +0000 (12:49 +0800)
If the g++ is older than 4.7.0, the class-key of the
elaborated-type-specifier is required in a friend declaration
for a class. So modify the code to make it compitible with old
g++ version.

Signed-off-by: Chuanbo Weng <chuanbo.weng@intel.com>
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
backend/src/backend/gen_context.hpp

index 3b59797..3eda148 100644 (file)
@@ -195,7 +195,7 @@ namespace gbe
     /*! allocate a new curbe register and insert to curbe pool. */
     void allocCurbeReg(ir::Register reg, gbe_curbe_type value, uint32_t subValue = 0);
 
-    friend GenRegAllocator;               //!< need to access errCode directly. 
+    friend class GenRegAllocator;               //!< need to access errCode directly.
 
   };