mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 08:29:59 +00:00
shader: Properly insert Prologue instruction
This commit is contained in:
parent
83a283fa86
commit
d3dad6b632
1 changed files with 2 additions and 1 deletions
|
@ -635,7 +635,8 @@ public:
|
|||
block_list{block_list_} {
|
||||
Visit(root_stmt, nullptr, nullptr);
|
||||
|
||||
IR::IREmitter ir{*block_list.front()};
|
||||
IR::Block& first_block{*block_list.front()};
|
||||
IR::IREmitter ir{first_block, first_block.begin()};
|
||||
ir.Prologue();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue