summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_parser.cc
diff options
context:
space:
mode:
authorGuillermo Julián <[email protected]>2015-07-10 14:05:33 +0200
committerGuillermo Julián <[email protected]>2015-07-10 14:05:33 +0200
commit2dee85bd4e7558e190880e2ade20764131945569 (patch)
tree2f7080bb0d396ca17bfd5164b45fd99cc2640d45 /src/cuda-sim/ptx_parser.cc
parentc6a19233a5cbf3ee2f89fbd54a0a2eb9375d4ca0 (diff)
Increase line buffer size
Diffstat (limited to 'src/cuda-sim/ptx_parser.cc')
-rw-r--r--src/cuda-sim/ptx_parser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/ptx_parser.cc b/src/cuda-sim/ptx_parser.cc
index 824714a..2e5ed8e 100644
--- a/src/cuda-sim/ptx_parser.cc
+++ b/src/cuda-sim/ptx_parser.cc
@@ -240,7 +240,7 @@ void parse_assert_impl( int test_value, const char *file, unsigned line, const c
parse_error_impl(file,line, msg);
}
-extern char linebuf[1024];
+extern char linebuf[4096];
void set_return()