2011-05-19 Richard Guenther <rguenther@suse.de>
PR middle-end/48985
* tree-object-size.c (addr_object_size): If the pointed-to
variable is a decl use DECL_SIZE_UNIT instead of TYPE_SIZE_UNIT.
* gcc.dg/builtin-object-size-11.c: New testcase.
From-SVN: r173901
+2011-05-19 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/48985
+ * tree-object-size.c (addr_object_size): If the pointed-to
+ variable is a decl use DECL_SIZE_UNIT instead of TYPE_SIZE_UNIT.
+
2011-05-19 Richard Guenther <rguenther@suse.de>
* gimple.c (gimple_types_compatible_p_1): Compare names of
+2011-05-19 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/48985
+ * gcc.dg/builtin-object-size-11.c: New testcase.
+
2011-05-19 Tom de Vries <tom@codesourcery.com>
PR target/45098
--- /dev/null
+/* PR48985 */
+/* { dg-do run } */
+
+extern void abort (void);
+
+struct s {
+ int i;
+ char c[];
+} s = { 1, "01234" };
+
+__SIZE_TYPE__ f (void) { return __builtin_object_size (&s.c, 0); }
+
+int
+main()
+{
+ if (f() != sizeof ("01234"))
+ abort ();
+
+ return 0;
+}
if (sz != unknown[object_size_type] && sz < offset_limit)
pt_var_size = size_int (sz);
}
+ else if (pt_var
+ && DECL_P (pt_var)
+ && host_integerp (DECL_SIZE_UNIT (pt_var), 1)
+ && (unsigned HOST_WIDE_INT)
+ tree_low_cst (DECL_SIZE_UNIT (pt_var), 1) < offset_limit)
+ pt_var_size = DECL_SIZE_UNIT (pt_var);
else if (pt_var
&& (SSA_VAR_P (pt_var) || TREE_CODE (pt_var) == STRING_CST)
&& TYPE_SIZE_UNIT (TREE_TYPE (pt_var))