From ef8a5521e440baa2f86d468cdc9078f54ec7c0c0 Mon Sep 17 00:00:00 2001 From: Dongdong Li Date: Fri, 22 Nov 2013 15:38:36 -0800 Subject: Delete Intersim Code Review Issue: 113001 [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 17414] --- src/intersim/config.y | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/intersim/config.y (limited to 'src/intersim/config.y') diff --git a/src/intersim/config.y b/src/intersim/config.y deleted file mode 100644 index d2388c9..0000000 --- a/src/intersim/config.y +++ /dev/null @@ -1,33 +0,0 @@ -%{ - -#include "booksim.hpp" -#include -#include "config_utils.hpp" - -int configlex(void); -void configerror(string msg); - -%} - -%union { - char *name; - unsigned int num; - double fnum; -} - -%token STR -%token NUM -%token FNUM - -%% - -commands : commands command - | command -; - -command : STR '=' STR ';' { Configuration::GetTheConfig()->Assign( $1, $3 ); free( $1 ); free( $3 ); } - | STR '=' NUM ';' { Configuration::GetTheConfig()->Assign( $1, $3 ); free( $1 ); } - | STR '=' FNUM ';' { Configuration::GetTheConfig()->Assign( $1, $3 ); free( $1 ); } -; - -%% -- cgit v1.3