mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
intel/ir: Add missing initialization of backend_reg::offset during construction.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
e549e4f6c0
commit
bdad7f429a
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@
|
|||
struct backend_reg : private brw_reg
|
||||
{
|
||||
backend_reg() {}
|
||||
backend_reg(const struct brw_reg ®) : brw_reg(reg) {}
|
||||
backend_reg(const struct brw_reg ®) : brw_reg(reg), offset(0) {}
|
||||
|
||||
const brw_reg &as_brw_reg() const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue