Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1135
-gerrit
commit 84d18095b8e10b15d5e95c026fc96148b3603580 Author: Stefan Reinauer reinauer@chromium.org Date: Fri Jun 22 11:07:25 2012 -0700
romcc: fix up attribute((unused)) detection
The length was not accounted for correctly.
Change-Id: If34f288ba9dee1cd19d60da1b9f3647b9593ac1f Signed-off-by: Stefan Reinauer reinauer@google.com --- util/romcc/romcc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/util/romcc/romcc.c b/util/romcc/romcc.c index b0f6198..15e950c 100644 --- a/util/romcc/romcc.c +++ b/util/romcc/romcc.c @@ -24992,7 +24992,7 @@ static void compile(const char *filename, state.i_noinline = lookup(&state, "noinline", 8); state.i_always_inline = lookup(&state, "always_inline", 13); state.i_noreturn = lookup(&state, "noreturn", 8); - state.i_unused = lookup(&state, "unused", 8); + state.i_unused = lookup(&state, "unused", 6);
/* Process the command line macros */ process_cmdline_macros(&state);