From 2438c0a236639e510716228ffd9578329185fe00 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 20 Mar 2017 16:04:38 +0000 Subject: intel/compiler: consistently use ifndef guards over pragma once MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Emil Velikov Acked-by: Lionel Landwerlin Acked-by: Vedran Miletić Acked-by: Juha-Pekka Heikkila Reviewed-by: Edward O'Callaghan --- src/intel/compiler/brw_vec4_live_variables.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/intel/compiler/brw_vec4_live_variables.h') diff --git a/src/intel/compiler/brw_vec4_live_variables.h b/src/intel/compiler/brw_vec4_live_variables.h index 8807c453743..2946b98aacc 100644 --- a/src/intel/compiler/brw_vec4_live_variables.h +++ b/src/intel/compiler/brw_vec4_live_variables.h @@ -25,6 +25,9 @@ * */ +#ifndef BRW_VEC4_LIVE_VARIABLES_H +#define BRW_VEC4_LIVE_VARIABLES_H + #include "util/bitset.h" #include "brw_vec4.h" @@ -110,3 +113,5 @@ var_from_reg(const simple_allocator &alloc, const dst_reg ®, } } /* namespace brw */ + +#endif /* BRW_VEC4_LIVE_VARIABLES_H */ -- cgit v1.2.3