summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-01-06 16:11:57 -0800
committerJason Ekstrand <[email protected]>2015-01-15 07:20:24 -0800
commitdcb1acdea00a8f2c29777ff4078832df9d5b40ce (patch)
treedec95ee541856f5d05cb0e874c9ee94abeb830a9
parent347ab2bf245e67f72bc707b69f92c5a5dd0c49b4 (diff)
nir/validate: Only build in debug mode
Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Connor Abbott <[email protected]>
-rw-r--r--src/glsl/nir/nir.h4
-rw-r--r--src/glsl/nir/nir_validate.c7
2 files changed, 11 insertions, 0 deletions
diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h
index 201304b2f10..1daf53fa44c 100644
--- a/src/glsl/nir/nir.h
+++ b/src/glsl/nir/nir.h
@@ -1437,7 +1437,11 @@ void nir_index_blocks(nir_function_impl *impl);
void nir_print_shader(nir_shader *shader, FILE *fp);
+#ifdef DEBUG
void nir_validate_shader(nir_shader *shader);
+#else
+static inline void nir_validate_shader(nir_shader *shader) { }
+#endif /* DEBUG */
void nir_calc_dominance_impl(nir_function_impl *impl);
void nir_calc_dominance(nir_shader *shader);
diff --git a/src/glsl/nir/nir_validate.c b/src/glsl/nir/nir_validate.c
index 240da02a715..d2ce021196e 100644
--- a/src/glsl/nir/nir_validate.c
+++ b/src/glsl/nir/nir_validate.c
@@ -32,6 +32,11 @@
* This file checks for invalid IR indicating a bug somewhere in the compiler.
*/
+/* Since this file is just a pile of asserts, don't bother compiling it if
+ * we're not building a debug build.
+ */
+#ifdef DEBUG
+
/*
* Per-register validation state.
*/
@@ -882,3 +887,5 @@ nir_validate_shader(nir_shader *shader)
destroy_validate_state(&state);
}
+
+#endif /* NDEBUG */