diff options
| author | Tor Aamodt <[email protected]> | 2013-02-18 07:39:19 -0800 |
|---|---|---|
| committer | Andrew Boktor <[email protected]> | 2014-08-14 13:50:05 -0700 |
| commit | b7fc118ef12b8706d2e951aa00101de7d4d56af1 (patch) | |
| tree | 2dc34c634eafcd9209fe911df83e14a51970c931 /src/cuda-sim | |
| parent | 789025599aabfb552d3689549d31329ee5ada722 (diff) | |
proposed fix for bug 42 (Alexander Samoilov)
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 15271]
Diffstat (limited to 'src/cuda-sim')
| -rw-r--r-- | src/cuda-sim/ptx_ir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx_ir.h b/src/cuda-sim/ptx_ir.h index f4ad6f7..547372d 100644 --- a/src/cuda-sim/ptx_ir.h +++ b/src/cuda-sim/ptx_ir.h @@ -369,6 +369,8 @@ public: m_type = symbolic_t; } else if ( addr->is_func_addr() ) { m_type = symbolic_t; + } else if ( !addr->is_reg() ) { + m_type = symbolic_t; } else { m_type = reg_t; } |
