diff options
author | Emil Velikov <[email protected]> | 2017-03-20 16:04:38 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-22 16:55:22 +0000 |
commit | 2438c0a236639e510716228ffd9578329185fe00 (patch) | |
tree | 55755b37aef4fc370e79a428ad15238a5c0009b8 /src/intel/compiler/brw_nir.h | |
parent | 868324419e7e98db0af01dad52660e735de20236 (diff) |
intel/compiler: consistently use ifndef guards over pragma once
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Lionel Landwerlin <[email protected]>
Acked-by: Vedran Miletić <[email protected]>
Acked-by: Juha-Pekka Heikkila <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_nir.h')
-rw-r--r-- | src/intel/compiler/brw_nir.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_nir.h b/src/intel/compiler/brw_nir.h index 76d7ec89f9b..b96072cf962 100644 --- a/src/intel/compiler/brw_nir.h +++ b/src/intel/compiler/brw_nir.h @@ -21,7 +21,8 @@ * IN THE SOFTWARE. */ -#pragma once +#ifndef BRW_NIR_H +#define BRW_NIR_H #include "brw_reg.h" #include "compiler/nir/nir.h" @@ -152,3 +153,5 @@ bool brw_nir_opt_peephole_ffma(nir_shader *shader); #ifdef __cplusplus } #endif + +#endif /* BRW_NIR_H */ |