diff options
| author | sspenst <[email protected]> | 2016-06-07 16:22:45 -0700 |
|---|---|---|
| committer | sspenst <[email protected]> | 2016-06-07 16:22:45 -0700 |
| commit | 587853a81f6fa6088b7f3d93fc8862a8b2610da7 (patch) | |
| tree | a29948b33b8e44543747744430ae0e0e57cd5b59 /src/cuda-sim/ptx.l | |
| parent | 7aeadc95cc50d266f93cdb3ada1c192d9b5a1046 (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.l')
| -rw-r--r-- | src/cuda-sim/ptx.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cuda-sim/ptx.l b/src/cuda-sim/ptx.l index 66ff48f..a44177b 100644 --- a/src/cuda-sim/ptx.l +++ b/src/cuda-sim/ptx.l @@ -326,6 +326,8 @@ breakaddr TC; ptx_lval.int_value = BREAKADDR_OP; return OPCODE; \.wb TC; return WB_OPTION; \.wt TC; return WT_OPTION; +\.nc TC; return NC_OPTION; + \.popc TC; return ATOMIC_POPC; \.and TC; return ATOMIC_AND; \.or TC; return ATOMIC_OR; |
