shader_ir: Implement BRX & BRA.CC

This commit is contained in:
Fernando Sahmkow 2019-06-24 21:25:38 -04:00 committed by FernandoS27
parent fc89b55635
commit d5d4cc30ec
6 changed files with 76 additions and 4 deletions

View file

@ -284,6 +284,9 @@ ParseResult ParseCode(CFGRebuildState& state, u32 address, ParseInfo& parse_info
state.pbk_labels.emplace(offset, target);
break;
}
case OpCode::Id::BRX: {
return ParseResult::AbnormalFlow;
}
default:
break;
}