summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_ir.h
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2010-08-08 08:34:45 -0800
committerTor Aamodt <[email protected]>2010-08-08 08:34:45 -0800
commit43eb0e822424b39b52091f45725376cc903b08ee (patch)
treeb865e1d0873239b63da4c26b1131358d0abd4bfe /src/cuda-sim/ptx_ir.h
parent6ef41cd4671ebb8d79d3b8a2cdb33b518ec2e6cf (diff)
refactoring: making g_current_symbol_table local to ptx_ir.cc
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7165]
Diffstat (limited to 'src/cuda-sim/ptx_ir.h')
-rw-r--r--src/cuda-sim/ptx_ir.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx_ir.h b/src/cuda-sim/ptx_ir.h
index 1daf9f1..839cceb 100644
--- a/src/cuda-sim/ptx_ir.h
+++ b/src/cuda-sim/ptx_ir.h
@@ -1010,7 +1010,7 @@ public:
return m_start_PC;
}
- void finalize( memory_space *param_mem, symbol_table *symtab );
+ void finalize( memory_space *param_mem );
void list_param( FILE *fout ) const;
const struct gpgpu_ptx_sim_kernel_info* get_kernel_info () {
@@ -1259,7 +1259,6 @@ extern function_info *g_func_info;
extern int g_error_detected;
extern bool g_debug_ir_generation;
extern std::list<ptx_instruction*> g_instructions;
-extern symbol_table *g_current_symbol_table;
extern symbol_table *g_entrypoint_symbol_table;
extern function_info *g_entrypoint_func_info;
extern symbol_table *g_global_symbol_table;