diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-09-02 07:33:31 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-09-10 13:38:32 +0200 |
commit | e72ca652aa08e3d07c59349f239ba596f27c97af (patch) | |
tree | 931e41eb72bafe37f7189740e89f33a25458da1b /target-s390x/cpu.h | |
parent | 71e470886fb6092504503a5fe41092ace71c096c (diff) | |
download | qemu-e72ca652aa08e3d07c59349f239ba596f27c97af.zip |
target-s390x: split FPU ops
Move floating point instructions to fpu_helper.c.
While exporting some condition code helpers,
avoid duplicate identifier conflict with translate.c.
Remove unused set_cc_nz_f64() in translate.c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-s390x/cpu.h')
-rw-r--r-- | target-s390x/cpu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h index 18ac6e3938..b4620c502d 100644 --- a/target-s390x/cpu.h +++ b/target-s390x/cpu.h @@ -999,4 +999,10 @@ static inline void cpu_pc_from_tb(CPUS390XState *env, TranslationBlock* tb) env->psw.addr = tb->pc; } +/* fpu_helper.c */ +uint32_t set_cc_f32(float32 v1, float32 v2); +uint32_t set_cc_f64(float64 v1, float64 v2); +uint32_t set_cc_nz_f32(float32 v); +uint32_t set_cc_nz_f64(float64 v); + #endif |