summaryrefslogtreecommitdiff
path: root/ir_variable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ir_variable.cpp')
-rw-r--r--ir_variable.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/ir_variable.cpp b/ir_variable.cpp
index b5e7d6e933..2c2b57a711 100644
--- a/ir_variable.cpp
+++ b/ir_variable.cpp
@@ -21,6 +21,7 @@
* DEALINGS IN THE SOFTWARE.
*/
+#include <stdio.h>
#include "glsl_parser_extras.h"
#include "glsl_symbol_table.h"
#include "ir.h"
@@ -315,5 +316,9 @@ _mesa_glsl_initialize_variables(exec_list *instructions,
case fragment_shader:
initialize_fs_variables(instructions, state);
break;
+ case ir_shader:
+ fprintf(stderr, "ir reader has no builtin variables");
+ exit(1);
+ break;
}
}