diff options
author | Ian Romanick <[email protected]> | 2016-09-15 11:37:32 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-11-10 14:30:49 -0800 |
commit | e9acae8486fff4f9fe6aa111c6fa5652ebb9f8bf (patch) | |
tree | 9b1f70a7d3670c0334e6f2e25bf5d08444c235b2 /src/compiler/glsl/main.cpp | |
parent | 191d9a5195c0d4871e264a73781dbf8b4368fcb7 (diff) |
glsl/standalone: Add the ability to generate ir_builder code
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/compiler/glsl/main.cpp')
-rw-r--r-- | src/compiler/glsl/main.cpp | 1 |
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' }, |