summaryrefslogtreecommitdiff
path: root/src/cuda-sim
diff options
context:
space:
mode:
authorJonathan <[email protected]>2018-05-16 13:36:15 -0700
committerJonathan <[email protected]>2018-05-25 09:11:55 -0700
commita9f90b837af13e205886c19696f779e15e2499b0 (patch)
tree9c4e6fc5c26205bd03daf5d4fcc4b6b452245404 /src/cuda-sim
parente881b14ad986065aeac2f69c872533bbaafe2ac2 (diff)
is_reg change
Diffstat (limited to 'src/cuda-sim')
-rw-r--r--src/cuda-sim/instructions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/instructions.cc b/src/cuda-sim/instructions.cc
index 583a49a..86951ed 100644
--- a/src/cuda-sim/instructions.cc
+++ b/src/cuda-sim/instructions.cc
@@ -2366,7 +2366,7 @@ void decode_space( memory_space_t &space, ptx_thread_info *thread, const operand
type_info_key ti = t->get_key();
if( ti.is_param_kernel() )
space = param_space_kernel;
- else if( ti.is_param_local() ) {
+ else if( ti.is_param_local() )
space = param_space_local;
}
else if( ti.is_reg() ) {