The following makes sure to convert the folded expression to the
original expression type.
PR middle-end/119204
* builtins.cc (fold_builtin_strcspn): Preserve the original
expression type.
* gcc.dg/pr119204.c: New testcase.
{
/* Evaluate and ignore argument s2 in case it has
side-effects. */
- return omit_one_operand_loc (loc, size_type_node,
+ return omit_one_operand_loc (loc, TREE_TYPE (expr),
size_zero_node, s2);
}
if (!fn)
return NULL_TREE;
- return build_call_expr_loc (loc, fn, 1, s1);
+ return fold_convert_loc (loc, TREE_TYPE (expr),
+ build_call_expr_loc (loc, fn, 1, s1));
}
return NULL_TREE;
}
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-w" } */
+
+extern void abort(void);
+extern long long strcspn(const char *, const char *);
+
+void main_test(void) {
+ const char *const s1 = "hello world";
+ char dst[64], *d2;
+
+ if (strcspn(++d2 + 5, "") != 5 || d2 != dst + 1)
+ abort();
+}