| 867 | } |
| 868 | |
| 869 | void BNEL( std::string& output ) |
| 870 | { |
| 871 | int rs = DECODE_RS; |
| 872 | int rt = DECODE_RT; |
| 873 | |
| 874 | if (disSimplify && rs == 0 && rt != 0) |
| 875 | disBranch(output, "bnezl", rt); |
| 876 | else if (disSimplify && rs != 0 && rt == 0) |
| 877 | disBranch(output, "bnezl", rs); |
| 878 | else |
| 879 | disBranch(output, "bnel", rs, rt); |
| 880 | } |
| 881 | |
| 882 | void BLEZL( std::string& output ) { disBranch(output, "blezl", DECODE_RS); } |
| 883 | void BGTZL( std::string& output ) { disBranch(output, "bgtzl", DECODE_RS); } |
nothing calls this directly
no test coverage detected