mirror of
https://github.com/open-goal/jak-project
synced 2026-08-06 01:49:17 -04:00
[decompiler] clean up vector detection and add vector float product detection (#638)
* change * recognize vector float product and update tests
This commit is contained in:
@@ -1541,6 +1541,12 @@ std::string fixed_operator_to_string(FixedOperatorKind kind) {
|
||||
return ".asm.sllv.r0";
|
||||
case FixedOperatorKind::ASM_MADDS:
|
||||
return ".asm.madd.s";
|
||||
case FixedOperatorKind::VECTOR_MINUS:
|
||||
return "vector-!";
|
||||
case FixedOperatorKind::VECTOR_PLUS:
|
||||
return "vector+!";
|
||||
case FixedOperatorKind::VECTOR_FLOAT_PRODUCT:
|
||||
return "vector-float*!";
|
||||
default:
|
||||
assert(false);
|
||||
return "";
|
||||
|
||||
Reference in New Issue
Block a user