diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-08-25 07:31:29 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-09-01 07:41:38 -0700 |
commit | 58b48b637db61e28a5e6c1ec9fce42b9f79c7b36 (patch) | |
tree | 8aa24b59912bfbd154cbbe4dba194fd7804a42a9 /target/microblaze/helper.h | |
parent | a2b0b90e7960c6dcf52be237149c1b9ff289d9a5 (diff) |
target/microblaze: Implement cmp and cmpu inline
These are simple enough operations; we do not need to
call an out-of-line helper.
Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/microblaze/helper.h')
-rw-r--r-- | target/microblaze/helper.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/microblaze/helper.h b/target/microblaze/helper.h index 988abf7661..6f7f96421f 100644 --- a/target/microblaze/helper.h +++ b/target/microblaze/helper.h @@ -1,6 +1,4 @@ DEF_HELPER_FLAGS_2(raise_exception, TCG_CALL_NO_WG, noreturn, env, i32) -DEF_HELPER_2(cmp, i32, i32, i32) -DEF_HELPER_2(cmpu, i32, i32, i32) DEF_HELPER_3(divs, i32, env, i32, i32) DEF_HELPER_3(divu, i32, env, i32, i32) |