| 480 | }; |
| 481 | |
| 482 | bool is_same_value(instruction_ref a, instruction_ref b) |
| 483 | { |
| 484 | if(a == b) |
| 485 | return true; |
| 486 | return compare_literals(a, b); |
| 487 | } |
| 488 | |
| 489 | bool is_same_scale_zero(instruction_ref a, instruction_ref b) |
| 490 | { |
no test coverage detected