mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-01-30 11:54:19 +01:00
We can fold division operations if: 1. The divisor is zero, then we can replace the result with zero (as this is how ARM platforms expect it). 2. Both values are known, in which case we can just do the operation and store the result 3. The divisor is 1, in which case just return the other operand. |
||
|---|---|---|
| .. | ||
| backend/x64 | ||
| common | ||
| frontend | ||
| ir_opt | ||
| CMakeLists.txt | ||