summaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_fs_live_variables.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-03-20 16:04:38 +0000
committerEmil Velikov <[email protected]>2017-03-22 16:55:22 +0000
commit2438c0a236639e510716228ffd9578329185fe00 (patch)
tree55755b37aef4fc370e79a428ad15238a5c0009b8 /src/intel/compiler/brw_fs_live_variables.h
parent868324419e7e98db0af01dad52660e735de20236 (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_fs_live_variables.h')
-rw-r--r--src/intel/compiler/brw_fs_live_variables.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_fs_live_variables.h b/src/intel/compiler/brw_fs_live_variables.h
index 91d1e42cbc1..d2d5898ed1c 100644
--- a/src/intel/compiler/brw_fs_live_variables.h
+++ b/src/intel/compiler/brw_fs_live_variables.h
@@ -25,6 +25,9 @@
*
*/
+#ifndef BRW_FS_LIVE_VARIABLES_H
+#define BRW_FS_LIVE_VARIABLES_H
+
#include "brw_fs.h"
#include "util/bitset.h"
@@ -113,3 +116,5 @@ protected:
};
} /* namespace brw */
+
+#endif /* BRW_FS_LIVE_VARIABLES_H */