changeset 508635b3e666 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=508635b3e666
description:
        ARM: fix bits-to-fp conversion function declarations.

        Add extra declarations to allow the compiler to pick up the right 
function.
        Please note that these declarations have been added as part of the
        clang-related changes.

diffstat:

 src/arch/arm/insts/vfp.hh |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (13 lines):

diff -r fe907afe14a3 -r 508635b3e666 src/arch/arm/insts/vfp.hh
--- a/src/arch/arm/insts/vfp.hh Thu Mar 01 11:37:03 2012 -0600
+++ b/src/arch/arm/insts/vfp.hh Thu Mar 01 17:26:30 2012 -0600
@@ -108,7 +108,9 @@
 };
 
 static inline float bitsToFp(uint64_t, float);
+static inline double bitsToFp(uint64_t, double);
 static inline uint32_t fpToBits(float);
+static inline uint64_t fpToBits(double);
 
 template <class fpType>
 static inline bool
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to