mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-13 20:38:26 -05:00
glsl: INeg and IAdd negate tests
This commit is contained in:
@ -51,8 +51,7 @@ std::string RegAlloc::Define(IR::Inst& inst, Type type) {
|
||||
}
|
||||
|
||||
std::string RegAlloc::Consume(const IR::Value& value) {
|
||||
const auto result = value.IsImmediate() ? MakeImm(value) : Consume(*value.InstRecursive());
|
||||
return result;
|
||||
return value.IsImmediate() ? MakeImm(value) : Consume(*value.InstRecursive());
|
||||
}
|
||||
|
||||
std::string RegAlloc::Consume(IR::Inst& inst) {
|
||||
|
Reference in New Issue
Block a user