1 From 56a8ff0c197b4b0f917e3b50ac0dd3ed26f300c3 Mon Sep 17 00:00:00 2001
2 From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
3 Date: Tue, 5 Apr 2011 12:13:27 +0000
4 Subject: [PATCH 068/200] 2011-04-05 Richard Guenther <rguenther@suse.de>
7 * lto-plugin.c (claim_file_handler): Do not declare vars in code.
10 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_6-branch@171983 138bc75d-0d04-0410-961f-82ee72b054a4
12 index 64a0164..661f10c 100644
13 --- a/lto-plugin/lto-plugin.c
14 +++ b/lto-plugin/lto-plugin.c
15 @@ -851,11 +851,11 @@ claim_file_handler (const struct ld_plugin_input_file *file, int *claimed)
16 /* We pass the offset of the actual file, not the archive header.
17 Can't use PRIx64, because that's C99, so we have to print the
18 64-bit hex int as two 32-bit ones. */
21 lo = file->offset & 0xffffffff;
22 hi = ((int64_t)file->offset >> 32) & 0xffffffff;
23 - int t = hi ? asprintf (&objname, "%s@0x%x%08x", file->name, lo, hi)
24 - : asprintf (&objname, "%s@0x%x", file->name, lo);
25 + t = hi ? asprintf (&objname, "%s@0x%x%08x", file->name, lo, hi)
26 + : asprintf (&objname, "%s@0x%x", file->name, lo);
27 check (t >= 0, LDPL_FATAL, "asprintf failed");
28 lto_file.name = objname;