Skip to content

Commit 28251fc

Browse files
committed
match main upstream format
1 parent 033e8bf commit 28251fc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/shader_recompiler/frontend/decode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1110,4 +1110,4 @@ void GcnDecodeContext::decodeInstructionEXP(uint64_t hexInstruction) {
11101110
m_instruction.control.exp = *reinterpret_cast<InstControlEXP*>(&hexInstruction);
11111111
}
11121112

1113-
} // namespace Shader::Gcn
1113+
} // namespace Shader::Gcn

src/shader_recompiler/frontend/translate/vector_alu.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,11 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
290290
return V_CMP_U32(ConditionOp::TRU, false, true, inst);
291291
case Opcode::V_CMPX_LE_I32:
292292
return V_CMP_U32(ConditionOp::LE, true, true, inst);
293+
293294
// V_CMP_{OP8}_U64
294295
case Opcode::V_CMP_NE_U64:
295296
return V_CMP_NE_U64(inst);
297+
296298
case Opcode::V_CMP_CLASS_F32:
297299
return V_CMP_CLASS_F32(inst);
298300

0 commit comments

Comments
 (0)