aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_vla.h
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2017-03-20 16:04:16 +0000
committerEmil Velikov <[email protected]>2017-03-22 16:55:22 +0000
commite3de145fa26dadf43f6e14ed69aace6a550cd157 (patch)
treebcf03029cf37225e28a15e20617cdb701d545bcd /src/compiler/nir/nir_vla.h
parentb08aee305ea0caf5035932b26b8fc75782b49160 (diff)
nir: consistently use ifndef guards over pragma once
Signed-off-by: Emil Velikov <[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/compiler/nir/nir_vla.h')
-rw-r--r--src/compiler/nir/nir_vla.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compiler/nir/nir_vla.h b/src/compiler/nir/nir_vla.h
index 753783316a2..d01c039cfd2 100644
--- a/src/compiler/nir/nir_vla.h
+++ b/src/compiler/nir/nir_vla.h
@@ -25,8 +25,8 @@
*
**************************************************************************/
-#pragma once
-
+#ifndef NIR_VLA_H
+#define NIR_VLA_H
#include "c99_alloca.h"
@@ -52,3 +52,5 @@
*/
#define NIR_VLA_ZERO(_type, _name, _length) \
NIR_VLA_FILL(_type, _name, _length, 0)
+
+#endif /* NIR_VLA_H */