]> code.ossystems Code Review - openembedded-core.git/blob
6761a025fb54c2838facbfa9e0b2daa9137903b9
[openembedded-core.git] /
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>
5
6         PR bootstrap/48431
7         * lto-plugin.c (claim_file_handler): Do not declare vars in code.
8
9
10 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_6-branch@171983 138bc75d-0d04-0410-961f-82ee72b054a4
11
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. */
19 -      int lo, hi;
20 +      int lo, hi, t;
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;
29      }
30 -- 
31 1.7.0.4
32