summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx.y
diff options
context:
space:
mode:
authorMengchi Zhang <[email protected]>2019-07-03 14:54:16 -0400
committerMengchi Zhang <[email protected]>2019-07-03 14:54:16 -0400
commit60c38b0f77378eb111e88f632702d19dc3746cc7 (patch)
tree36ce48f9e23cd20797b765c04b4161b08edf8398 /src/cuda-sim/ptx.y
parentcb60ae4893086175fee49dc6088d46665a7f088b (diff)
Remove g_filename
Signed-off-by: Mengchi Zhang <[email protected]>
Diffstat (limited to 'src/cuda-sim/ptx.y')
-rw-r--r--src/cuda-sim/ptx.y5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cuda-sim/ptx.y b/src/cuda-sim/ptx.y
index 837fbe9..a01c3c6 100644
--- a/src/cuda-sim/ptx.y
+++ b/src/cuda-sim/ptx.y
@@ -30,6 +30,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
%{
typedef void * yyscan_t;
class ptx_recognizer;
+#include "../../libcuda/gpgpu_context.h"
%}
%define api.pure full
@@ -628,11 +629,9 @@ address_expression: IDENTIFIER { recognizer->add_address_operand($1,0); }
%%
-extern const char *g_filename;
-
void syntax_not_implemented(yyscan_t yyscanner, ptx_recognizer* recognizer)
{
- printf("Parse error (%s): this syntax is not (yet) implemented:\n",g_filename);
+ printf("Parse error (%s): this syntax is not (yet) implemented:\n", recognizer->gpgpu_ctx->g_filename);
ptx_error(yyscanner, recognizer, NULL);
abort();
}