mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-11 16:03:12 +00:00
control_flow: Assert shaders bigger than limit.
This commit is contained in:
parent
e7a88f0ab3
commit
dc4a93594c
|
@ -139,6 +139,8 @@ std::pair<ParseResult, ParseInfo> ParseCode(CFGRebuildState& state, u32 address)
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
if (offset >= end_address) {
|
if (offset >= end_address) {
|
||||||
|
// ASSERT_OR_EXECUTE can't be used, as it ignores the break
|
||||||
|
ASSERT_MSG(false, "Shader passed the current limit!");
|
||||||
parse_info.branch_info.address = exit_branch;
|
parse_info.branch_info.address = exit_branch;
|
||||||
parse_info.branch_info.ignore = false;
|
parse_info.branch_info.ignore = false;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue