blob: e0e328e1d1ba67e3f563ab81206ad6c885c2d9e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- gcc/stor-layout.c.orig 2014-10-15 10:27:26 UTC
+++ gcc/stor-layout.c
@@ -236,7 +236,7 @@ self_referential_size (tree size)
fntype = build_function_type (return_type, param_type_list);
/* Build the function declaration. */
- sprintf (buf, "SZ"HOST_WIDE_INT_PRINT_UNSIGNED, fnno++);
+ sprintf (buf, "SZ" HOST_WIDE_INT_PRINT_UNSIGNED, fnno++);
fnname = get_file_function_name (buf);
fndecl = build_decl (input_location, FUNCTION_DECL, fnname, fntype);
for (t = param_decl_list; t; t = DECL_CHAIN (t))
|