X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=opcodes%2Farc-ext.c;h=1e6c1f8a7f85d75b920f895990e70d418f900440;hb=b8674692ae6dc6be8d235e2a4cef7f13402f2322;hp=6634534016d751f6ec3690c40c6f5a468bc9231f;hpb=52886d70655a6ad043b003fa1a949abfc70a8c7e;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/arc-ext.c b/opcodes/arc-ext.c index 6634534016..1e6c1f8a7f 100644 --- a/opcodes/arc-ext.c +++ b/opcodes/arc-ext.c @@ -1,21 +1,23 @@ /* ARC target-dependent stuff. Extension structure access functions - Copyright 1995, 1997, 2000, 2001, 2004 Free Software Foundation, Inc. + Copyright 1995, 1997, 2000, 2001, 2004, 2005, 2007 + Free Software Foundation, Inc. - This file is part of GDB. + This file is part of libopcodes. - This program is free software; you can redistribute it and/or modify + This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + the Free Software Foundation; either version 3, or (at your option) + any later version. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + It is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, + MA 02110-1301, USA. */ #include "sysdep.h" #include @@ -58,7 +60,7 @@ arcExtMap_coreRegName(int value) { if (value < 32) return 0; - return (const char *) arc_extension_map.coreRegisters[value-32]; + return arc_extension_map.coreRegisters[value-32]; } /* Get the name of an extension condition code. */ @@ -68,7 +70,7 @@ arcExtMap_condCodeName(int value) { if (value < 16) return 0; - return (const char *) arc_extension_map.condCodes[value-16]; + return arc_extension_map.condCodes[value-16]; } /* Get the name of an extension aux register. */ @@ -187,7 +189,7 @@ arcExtMap_add(void *base, unsigned long length) else opcode -= 0x10; insn -> flags = (char) *(p+4); - strcpy(insn_name, (p+5)); + strcpy (insn_name, (char *) (p+5)); insn -> name = insn_name; arc_extension_map.instructions[(int) opcode] = insn; } @@ -197,7 +199,7 @@ arcExtMap_add(void *base, unsigned long length) { char * core_name = (char *) xmalloc(((int)*p-3) * sizeof(char)); - strcpy(core_name, (p+3)); + strcpy(core_name, (char *) (p+3)); arc_extension_map.coreRegisters[p[2]-32] = core_name; } break; @@ -205,7 +207,7 @@ arcExtMap_add(void *base, unsigned long length) case EXT_COND_CODE: { char * cc_name = (char *) xmalloc( ((int)*p-3) * sizeof(char)); - strcpy(cc_name, (p+3)); + strcpy(cc_name, (char *) (p+3)); arc_extension_map.condCodes[p[2]-16] = cc_name; } break; @@ -217,7 +219,7 @@ arcExtMap_add(void *base, unsigned long length) (struct ExtAuxRegister *)malloc(sizeof(struct ExtAuxRegister)); char * aux_name = (char *) xmalloc ( ((int)*p-6) * sizeof(char)); - strcpy (aux_name, (p+6)); + strcpy (aux_name, (char *) (p+6)); newAuxRegister->name = aux_name; newAuxRegister->address = p[2]<<24 | p[3]<<16 | p[4]<<8 | p[5]; newAuxRegister->next = arc_extension_map.auxRegisters;