]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/arm: Rename vfp_helper.c to vfp_fpscr.c
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 21 Feb 2025 19:09:56 +0000 (19:09 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 25 Feb 2025 15:32:58 +0000 (15:32 +0000)
The vfp_helper.c in the target/arm directory now only has
code for handling FPSCR/FPCR/FPSR in it, and no helper
functions. Rename it to vfp_fpscr.c; this helps keep it
distinct from tcg/vfp_helper.c.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20250221190957.811948-5-peter.maydell@linaro.org

target/arm/meson.build
target/arm/vfp_fpscr.c [moved from target/arm/vfp_helper.c with 98% similarity]

index 2e10464dbb6be77f237ec36d4399716c10c28251..3065081d241d4639fddac4b9bedefefc734522cd 100644 (file)
@@ -4,7 +4,7 @@ arm_ss.add(files(
   'debug_helper.c',
   'gdbstub.c',
   'helper.c',
-  'vfp_helper.c',
+  'vfp_fpscr.c',
 ))
 arm_ss.add(zlib)
 
similarity index 98%
rename from target/arm/vfp_helper.c
rename to target/arm/vfp_fpscr.c
index cc0f055ef0d67f7f3ba36456586272b0e41f2cb5..92ea60ebbf28df0bc4b43fc2f3ab939f48750783 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * ARM VFP floating-point operations
+ * ARM VFP floating-point: handling of FPSCR/FPCR/FPSR
  *
  *  Copyright (c) 2003 Fabrice Bellard
  *