* [PATCH 11/16] fix default argument promotion
@ 2007-06-24 8:05 Al Viro
0 siblings, 0 replies; only message in thread
From: Al Viro @ 2007-06-24 8:05 UTC (permalink / raw)
To: linux-sparse
It should do integer_promotion() for integer types, turn float into
double and degenerate() the functions/arrays. We do *not* want
compatible_assignment_type() in any case, though.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
evaluate.c | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/evaluate.c b/evaluate.c
index 6cb29ff..1d34cdf 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -1897,15 +1897,24 @@ static int evaluate_arguments(struct symbol *f, struct symbol *fn, struct expres
if (!ctype)
return 0;
- ctype = degenerate(expr);
-
target = argtype;
- if (!target && ctype->bit_size < bits_in_int)
- target = &int_ctype;
- if (target) {
+ if (!target) {
+ struct symbol *type;
+ int class = classify_type(ctype, &type);
+ if (is_int(class)) {
+ *p = cast_to(expr, integer_promotion(type));
+ } else if (class & TYPE_FLOAT) {
+ unsigned long mod = type->ctype.modifiers;
+ if (!(mod & (MOD_LONG|MOD_LONGLONG)))
+ *p = cast_to(expr, &double_ctype);
+ } else if (class & TYPE_PTR) {
+ degenerate(expr);
+ }
+ } else {
static char where[30];
examine_symbol_type(target);
sprintf(where, "argument %d", i);
+ ctype = degenerate(expr);
compatible_assignment_types(expr, target, p, ctype, where);
}
--
1.5.0-rc2.GIT
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-24 8:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-24 8:05 [PATCH 11/16] fix default argument promotion Al Viro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).