summaryrefslogtreecommitdiff
path: root/src/cuda-sim/ptx_ir.cc
diff options
context:
space:
mode:
authorsspenst <[email protected]>2016-06-07 16:22:45 -0700
committersspenst <[email protected]>2016-06-07 16:22:45 -0700
commit587853a81f6fa6088b7f3d93fc8862a8b2610da7 (patch)
treea29948b33b8e44543747744430ae0e0e57cd5b59 /src/cuda-sim/ptx_ir.cc
parent7aeadc95cc50d266f93cdb3ada1c192d9b5a1046 (diff)
The ptx parser now recognizes the NC option for ld.global, however this option is not actually implemented
Diffstat (limited to 'src/cuda-sim/ptx_ir.cc')
-rw-r--r--src/cuda-sim/ptx_ir.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx_ir.cc b/src/cuda-sim/ptx_ir.cc
index 8f9c3d2..2eccabc 100644
--- a/src/cuda-sim/ptx_ir.cc
+++ b/src/cuda-sim/ptx_ir.cc
@@ -1169,6 +1169,8 @@ ptx_instruction::ptx_instruction( int opcode,
break;
case EXTP_OPTION:
break;
+ case NC_OPTION:
+ break;
default:
assert(0);
break;