X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=opcodes%2Fia64-opc.c;h=52ceac981611aed17e6ee1d6bf8558c3581ed17a;hb=52248d53383e2ff905bacb46b1c24c89b64ab42e;hp=7938fbc9f7c0e65fee90fd339a7a6df5e907e7a5;hpb=9b201bb5e5daa9b4f783e6ece9cbfbdbf9f1d6f4;p=platform%2Fupstream%2Fbinutils.git diff --git a/opcodes/ia64-opc.c b/opcodes/ia64-opc.c index 7938fbc..52ceac9 100644 --- a/opcodes/ia64-opc.c +++ b/opcodes/ia64-opc.c @@ -1,5 +1,5 @@ /* ia64-opc.c -- Functions to access the compacted opcode table - Copyright 1999, 2000, 2001, 2003, 2005, 2007 Free Software Foundation, Inc. + Copyright (C) 1999-2014 Free Software Foundation, Inc. Written by Bob Manson of Cygnus Solutions, This file is part of the GNU opcodes library. @@ -19,7 +19,6 @@ Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "ansidecl.h" #include "sysdep.h" #include "libiberty.h" #include "ia64-asmtab.h" @@ -718,13 +717,13 @@ ia64_free_opcode (struct ia64_opcode *ent) } const struct ia64_dependency * -ia64_find_dependency (int index) +ia64_find_dependency (int dep_index) { - index = DEP(index); + dep_index = DEP(dep_index); - if (index < 0 - || index >= (int)(sizeof(dependencies) / sizeof(dependencies[0]))) + if (dep_index < 0 + || dep_index >= (int) ARRAY_SIZE (dependencies)) return NULL; - return &dependencies[index]; + return &dependencies[dep_index]; }