Revert "glasm: Skip phi moves on undefined instructions"
Causes regressions on Bowser's Fury.
This commit is contained in:
parent
2aa30353b7
commit
8f3043c3cf
2 changed files with 1 additions and 16 deletions
|
@ -395,17 +395,4 @@ inline f64 Value::F64() const {
|
|||
return inst.GetOpcode() == Opcode::Phi;
|
||||
}
|
||||
|
||||
[[nodiscard]] inline bool IsUndef(const Inst& inst) {
|
||||
switch (inst.GetOpcode()) {
|
||||
case Opcode::UndefU1:
|
||||
case Opcode::UndefU8:
|
||||
case Opcode::UndefU16:
|
||||
case Opcode::UndefU32:
|
||||
case Opcode::UndefU64:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Shader::IR
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue