Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5191 → Rev 6324

/contrib/toolchain/binutils/include/cgen/ChangeLog
1,3 → 1,15
2015-01-01 Alan Modra <amodra@gmail.com>
 
Update year range in copyright notice of all files.
 
2014-03-05 Alan Modra <amodra@gmail.com>
 
Update copyright years.
 
2014-01-06 Tom Tromey <tromey@redhat.com>
 
* bitset.h: Remove uses of PARAMS.
 
2013-07-18 Andrew Neitsch <andrew@neitsch.ca>
 
PR binutils/15728
18,7 → 30,7
* bitset.h: New file. Moved here from ../opcode/cgen-bitset.h.
Update license to GPL v3.
Copyright (C) 2009-2012 Free Software Foundation, Inc.
Copyright (C) 2009-2015 Free Software Foundation, Inc.
 
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
/contrib/toolchain/binutils/include/cgen/basic-modes.h
1,5 → 1,5
/* Basic CGEN modes.
Copyright 2005, 2007, 2009 Free Software Foundation, Inc.
Copyright (C) 2005-2015 Free Software Foundation, Inc.
Contributed by Red Hat.
 
This file is part of the GNU opcodes library.
/contrib/toolchain/binutils/include/cgen/basic-ops.h
1,5 → 1,5
/* Basic semantics ops support for CGEN.
Copyright 2005-2013 Free Software Foundation, Inc.
Copyright (C) 2005-2015 Free Software Foundation, Inc.
Contributed by Red Hat.
 
This file is part of the GNU opcodes library.
/contrib/toolchain/binutils/include/cgen/bitset.h
1,5 → 1,5
/* Header file the type CGEN_BITSET.
Copyright 2002, 2005, 2009 Free Software Foundation, Inc.
Copyright (C) 2002-2015 Free Software Foundation, Inc.
 
This file is part of the GNU opcodes library.
 
38,16 → 38,16
char *bits;
} CGEN_BITSET;
 
extern CGEN_BITSET *cgen_bitset_create PARAMS ((unsigned));
extern void cgen_bitset_init PARAMS ((CGEN_BITSET *, unsigned));
extern void cgen_bitset_clear PARAMS ((CGEN_BITSET *));
extern void cgen_bitset_add PARAMS ((CGEN_BITSET *, unsigned));
extern void cgen_bitset_set PARAMS ((CGEN_BITSET *, unsigned));
extern int cgen_bitset_compare PARAMS ((CGEN_BITSET *, CGEN_BITSET *));
extern void cgen_bitset_union PARAMS ((CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *));
extern int cgen_bitset_intersect_p PARAMS ((CGEN_BITSET *, CGEN_BITSET *));
extern int cgen_bitset_contains PARAMS ((CGEN_BITSET *, unsigned));
extern CGEN_BITSET *cgen_bitset_copy PARAMS ((CGEN_BITSET *));
extern CGEN_BITSET *cgen_bitset_create (unsigned);
extern void cgen_bitset_init (CGEN_BITSET *, unsigned);
extern void cgen_bitset_clear (CGEN_BITSET *);
extern void cgen_bitset_add (CGEN_BITSET *, unsigned);
extern void cgen_bitset_set (CGEN_BITSET *, unsigned);
extern int cgen_bitset_compare (CGEN_BITSET *, CGEN_BITSET *);
extern void cgen_bitset_union (CGEN_BITSET *, CGEN_BITSET *, CGEN_BITSET *);
extern int cgen_bitset_intersect_p (CGEN_BITSET *, CGEN_BITSET *);
extern int cgen_bitset_contains (CGEN_BITSET *, unsigned);
extern CGEN_BITSET *cgen_bitset_copy (CGEN_BITSET *);
 
#ifdef __cplusplus
} // extern "C"