summaryrefslogtreecommitdiff
path: root/glsl_parser_extras.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-25 18:29:25 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-25 18:40:48 -0700
commitd14642739e488c8cb15726de5a63cb01c6ce835c (patch)
tree485b84dc6d03a5b2f68858011d5eceb29b3ee38a /glsl_parser_extras.cpp
parentd7388f389dfd17e3842e5dfda1b5782c00f454e5 (diff)
IR print visitor: Remove most of the newlines from the printed output
This makes it a lot easier to read... if you have a really wide display.
Diffstat (limited to 'glsl_parser_extras.cpp')
-rw-r--r--glsl_parser_extras.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/glsl_parser_extras.cpp b/glsl_parser_extras.cpp
index a028658..d57a68e 100644
--- a/glsl_parser_extras.cpp
+++ b/glsl_parser_extras.cpp
@@ -652,6 +652,7 @@ main(int argc, char **argv)
ir_print_visitor v;
((ir_instruction *)iter.get())->accept(& v);
+ printf("\n");
}
}