diff options
author | Yang Zhong <yang.zhong@intel.com> | 2017-07-03 18:12:16 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-07-05 09:12:44 +0200 |
commit | db573d2cf7ae6b5a4fc324be6f55e078fc218464 (patch) | |
tree | 47f298fe1b749a301551da886f860abeaa3473ec /target/i386/cpu.h | |
parent | ab0a19d4f08d924e052eb369420d264240872f8a (diff) |
target/i386: make cpu_get_fp80()/cpu_set_fp80() static
Move cpu_get_fp80()/cpu_set_fp80() from fpu_helper.c to
machine.c because fpu_helper.c will be disabled if tcg is
disabled in the build.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/cpu.h')
-rw-r--r-- | target/i386/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/i386/cpu.h b/target/i386/cpu.h index c5e143e8ef..8d9ba3686c 100644 --- a/target/i386/cpu.h +++ b/target/i386/cpu.h @@ -1418,8 +1418,6 @@ int cpu_x86_get_descr_debug(CPUX86State *env, unsigned int selector, /* op_helper.c */ /* used for debug or cpu save/restore */ -void cpu_get_fp80(uint64_t *pmant, uint16_t *pexp, floatx80 f); -floatx80 cpu_set_fp80(uint64_t mant, uint16_t upper); /* cpu-exec.c */ /* the following helpers are only usable in user mode simulation as |