diff options
author | Alan Modra <amodra@gmail.com> | 2000-05-08 07:22:54 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-05-08 07:22:54 +0000 |
commit | 821011cc5b04dd05c9923eae278b676a9ced4ccd (patch) | |
tree | b2d8fe1e11091941280172c5dcc8497127a46e9c /opcodes/m68k-dis.c | |
parent | b35efbcd1b5345fea4be149e365d088d68757364 (diff) | |
download | gdb-821011cc5b04dd05c9923eae278b676a9ced4ccd.zip gdb-821011cc5b04dd05c9923eae278b676a9ced4ccd.tar.gz gdb-821011cc5b04dd05c9923eae278b676a9ced4ccd.tar.bz2 |
Kill compiler warnings with ATTRIBUTE_UNUSED.
Diffstat (limited to 'opcodes/m68k-dis.c')
-rw-r--r-- | opcodes/m68k-dis.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/opcodes/m68k-dis.c b/opcodes/m68k-dis.c index 10c461d..7f4b110 100644 --- a/opcodes/m68k-dis.c +++ b/opcodes/m68k-dis.c @@ -1,5 +1,5 @@ /* Print Motorola 68k instructions. - Copyright 1986, 87, 89, 91, 92, 93, 94, 95, 96, 97, 98, 1999 + Copyright 1986, 87, 89, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. This file is free software; you can redistribute it and/or modify @@ -151,16 +151,17 @@ fetch_data (info, addr) /* This function is used to print to the bit-bucket. */ static int #ifdef __STDC__ -dummy_printer (FILE * file, const char * format, ...) +dummy_printer (FILE * file ATTRIBUTE_UNUSED, + const char * format ATTRIBUTE_UNUSED, ...) #else -dummy_printer (file) FILE *file; +dummy_printer (file) FILE *file ATTRIBUTE_UNUSED; #endif { return 0; } static void dummy_print_address (vma, info) - bfd_vma vma; - struct disassemble_info *info; + bfd_vma vma ATTRIBUTE_UNUSED; + struct disassemble_info *info ATTRIBUTE_UNUSED; { } |