mirror of git://gcc.gnu.org/git/gcc.git
gcov-io.h (__fetch_long, [...]): Mark as possibly unused.
* gcov-io.h (__fetch_long, __store_long, __read_long, __write_long): Mark as possibly unused. From-SVN: r32220
This commit is contained in:
parent
4e37e57d14
commit
6e38f244c4
|
|
@ -1,5 +1,8 @@
|
||||||
Sun Feb 27 07:44:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
Sun Feb 27 07:44:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
|
||||||
|
|
||||||
|
* gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
|
||||||
|
Mark as possibly unused.
|
||||||
|
|
||||||
* cse.c (cse_insn): Delete dead code involving tablejump.
|
* cse.c (cse_insn): Delete dead code involving tablejump.
|
||||||
Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
|
Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,10 +24,10 @@ Boston, MA 02111-1307, USA. */
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
static int __fetch_long PARAMS ((long *, char *, size_t));
|
static int __fetch_long PARAMS ((long *, char *, size_t)) ATTRIBUTE_UNUSED;
|
||||||
static int __store_long PARAMS ((long, char *, size_t));
|
static int __store_long PARAMS ((long, char *, size_t)) ATTRIBUTE_UNUSED;
|
||||||
static int __read_long PARAMS ((long *, FILE *, size_t));
|
static int __read_long PARAMS ((long *, FILE *, size_t)) ATTRIBUTE_UNUSED;
|
||||||
static int __write_long PARAMS ((long, FILE *, size_t));
|
static int __write_long PARAMS ((long, FILE *, size_t)) ATTRIBUTE_UNUSED;
|
||||||
|
|
||||||
/* These routines only work for signed values. */
|
/* These routines only work for signed values. */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue