]> Git Repo - qemu.git/blobdiff - target-alpha/fpu_helper.c
target-arm: Add arm_boot_info secure_boot control
[qemu.git] / target-alpha / fpu_helper.c
index fe988ec459a2274c1bd55c4d9eb73d0f6e93b44c..d2d776c44635e290c70ed2781a288044f0daa4c6 100644 (file)
@@ -18,8 +18,8 @@
  */
 
 #include "cpu.h"
-#include "helper.h"
-#include "softfloat.h"
+#include "exec/helper-proto.h"
+#include "fpu/softfloat.h"
 
 #define FP_STATUS (env->fp_status)
 
@@ -820,3 +820,10 @@ uint64_t helper_cvtqg(CPUAlphaState *env, uint64_t a)
     fr = int64_to_float64(a, &FP_STATUS);
     return float64_to_g(fr);
 }
+
+void helper_fcvtql_v_input(CPUAlphaState *env, uint64_t val)
+{
+    if (val != (int32_t)val) {
+        arith_excp(env, GETPC(), EXC_M_IOV, 0);
+    }
+}
This page took 0.024389 seconds and 4 git commands to generate.