summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_loader.h
diff options
context:
space:
mode:
authorMengchi Zhang <[email protected]>2019-06-12 19:55:35 -0400
committerMengchi Zhang <[email protected]>2019-06-12 19:55:35 -0400
commit632bdaab79b9c1fd51ef8152aa00209f76c03101 (patch)
tree1bd10717e1cbb67a1610b73493f45eb9bd8d79d6 /src/cuda-sim/ptx_loader.h
parente5447646aaca133f2cc5cbafcaf7aeef4b384c62 (diff)
Fix some compiler warning
Signed-off-by: Mengchi Zhang <[email protected]>
Diffstat (limited to 'src/cuda-sim/ptx_loader.h')
-rw-r--r--src/cuda-sim/ptx_loader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx_loader.h b/src/cuda-sim/ptx_loader.h
index 3637bff..ee09e16 100644
--- a/src/cuda-sim/ptx_loader.h
+++ b/src/cuda-sim/ptx_loader.h
@@ -29,12 +29,12 @@
#define PTX_LOADER_H_INCLUDED
#include <string>
-#define LINEBUF_SIZE 1024
+#define PTXINFO_LINEBUF_SIZE 1024
typedef void * yyscan_t;
class ptxinfo_data{
public:
yyscan_t scanner;
- char linebuf[LINEBUF_SIZE];
+ char linebuf[PTXINFO_LINEBUF_SIZE];
unsigned col;
const char *g_ptxinfo_filename;