mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 08:22:32 +00:00
shader_recompiler: Fix Inst args size.
This commit is contained in:
parent
7b0463762c
commit
106305bad1
@ -209,7 +209,7 @@ private:
|
|||||||
union {
|
union {
|
||||||
NonTriviallyDummy dummy{};
|
NonTriviallyDummy dummy{};
|
||||||
boost::container::small_vector<std::pair<Block*, Value>, 2> phi_args;
|
boost::container::small_vector<std::pair<Block*, Value>, 2> phi_args;
|
||||||
std::array<Value, 5> args;
|
std::array<Value, 6> args;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
static_assert(sizeof(Inst) <= 128, "Inst size unintentionally increased");
|
static_assert(sizeof(Inst) <= 128, "Inst size unintentionally increased");
|
||||||
|
Loading…
Reference in New Issue
Block a user