diff options
| author | Jin Wang <[email protected]> | 2016-07-03 06:46:15 -0400 |
|---|---|---|
| committer | Jin Wang <[email protected]> | 2016-07-06 02:17:19 -0400 |
| commit | 06c5a3ddc979a78dd38bf0f74170e4919cd32fab (patch) | |
| tree | 2e55e9b33e79ce3e84916a54a16731b2d1de4d54 | |
| parent | 60fa05d4de0f3c926f9ab4f687b5d0748ec19285 (diff) | |
BUG: wrong declaration for m_args_aligned_size
| -rw-r--r-- | src/cuda-sim/ptx_ir.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cuda-sim/ptx_ir.h b/src/cuda-sim/ptx_ir.h index a54ae41..55b01fd 100644 --- a/src/cuda-sim/ptx_ir.h +++ b/src/cuda-sim/ptx_ir.h @@ -292,8 +292,6 @@ private: std::list<operand_info> m_initializer; static unsigned sm_next_uid; - //parameter size for device kernels - int m_args_aligned_size; }; class symbol_table { @@ -1302,6 +1300,9 @@ private: static std::vector<ptx_instruction*> s_g_pc_to_insn; // a direct mapping from PC to instruction static unsigned sm_next_uid; + + //parameter size for device kernels + int m_args_aligned_size; }; class arg_buffer_t { |
