summaryrefslogtreecommitdiff
path: root/src/compiler/glsl/main.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2016-09-15 11:37:32 -0700
committerIan Romanick <ian.d.romanick@intel.com>2016-09-15 15:08:14 -0700
commit9a4894a768fe84f6db0cc5fd44fb11497859edad (patch)
treea769ecb271e30e46de288de34170ed5e7980ef3f /src/compiler/glsl/main.cpp
parent03cbe9e75be1675906fa860c25f928c7ef5aa3bb (diff)
glsl/standalone: Add the ability to generate ir_builder codestandalone-ir_builder
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/compiler/glsl/main.cpp')
-rw-r--r--src/compiler/glsl/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/glsl/main.cpp b/src/compiler/glsl/main.cpp
index 1e5e0febcd9..e0d3ab75d16 100644
--- a/src/compiler/glsl/main.cpp
+++ b/src/compiler/glsl/main.cpp
@@ -42,6 +42,7 @@ const struct option compiler_opts[] = {
{ "dump-ast", no_argument, &options.dump_ast, 1 },
{ "dump-hir", no_argument, &options.dump_hir, 1 },
{ "dump-lir", no_argument, &options.dump_lir, 1 },
+ { "dump-builder", no_argument, &options.dump_builder, 1 },
{ "link", no_argument, &options.do_link, 1 },
{ "just-log", no_argument, &options.just_log, 1 },
{ "version", required_argument, NULL, 'v' },