diff options
| author | Jonathan <[email protected]> | 2018-06-05 12:58:08 -0700 |
|---|---|---|
| committer | Jonathan <[email protected]> | 2018-06-05 12:58:08 -0700 |
| commit | f7b0d64c68f12d604e09aec8dbba569df354faf6 (patch) | |
| tree | 60503071c68c4759e094a1d1e0a76424c2791e73 /src/cuda-sim/ptx_ir.cc | |
| parent | 73fea7152926dbc41cf008a4ed3402cc1feeefa7 (diff) | |
parse all ptx and add to symbol table
Diffstat (limited to 'src/cuda-sim/ptx_ir.cc')
| -rw-r--r-- | src/cuda-sim/ptx_ir.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cuda-sim/ptx_ir.cc b/src/cuda-sim/ptx_ir.cc index be25dbe..016c600 100644 --- a/src/cuda-sim/ptx_ir.cc +++ b/src/cuda-sim/ptx_ir.cc @@ -1031,7 +1031,7 @@ static std::list<operand_info> check_operands( int opcode, const std::list<operand_info> &operands ) { static int g_warn_literal_operands_two_type_inst; - if( (opcode == CVT_OP) || (opcode == SET_OP) || (opcode == SLCT_OP) || (opcode == TEX_OP) ) { + if( (opcode == CVT_OP) || (opcode == SET_OP) || (opcode == SLCT_OP) || (opcode == TEX_OP) || (opcode == DP4A_OP) ) { // just make sure these do not have have const operands... if( !g_warn_literal_operands_two_type_inst ) { std::list<operand_info>::const_iterator o; |
