diff options
author | Richard Henderson <rth@twiddle.net> | 2012-03-24 09:51:10 -0700 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-03-24 17:07:28 +0000 |
commit | a44a27775af6e745be50b23ae0f0aeb6f8462c80 (patch) | |
tree | 0013b3d9086af1dcbb304b71feac6000a1899815 /target-alpha/op_helper.c | |
parent | 4a58aedff479e02c33ba74d752f34944751ba28b (diff) |
target-alpha: Move fpcr helpers from op_helper.c to helper.c.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-alpha/op_helper.c')
-rw-r--r-- | target-alpha/op_helper.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index 6711d998b9..59ee31e2f8 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -43,16 +43,6 @@ uint64_t helper_load_pcc (void) #endif } -uint64_t helper_load_fpcr (void) -{ - return cpu_alpha_load_fpcr (env); -} - -void helper_store_fpcr (uint64_t val) -{ - cpu_alpha_store_fpcr (env, val); -} - uint64_t helper_addqv (uint64_t op1, uint64_t op2) { uint64_t tmp = op1; |