From f6edc33116f456921c8df0885fc5fba664760f2a Mon Sep 17 00:00:00 2001 From: Justin Seyster Date: Wed, 20 Oct 2010 15:54:34 -0400 Subject: [PATCH] Fixed precision-lossy cast to float. --- src/aop-weave.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aop-weave.c b/src/aop-weave.c index 7d08988..c0e65d5 100644 --- a/src/aop-weave.c +++ b/src/aop-weave.c @@ -264,7 +264,7 @@ build_gcc_call (const char *func_name, tree return_type, tree new_arg; const char *str_cst; int int_cst; - float float_cst; + double float_cst; char float_buf[25]; REAL_VALUE_TYPE r; void *ptr_cst; -- 2.34.1