diff options
author | Nick Clifton <nickc@redhat.com> | 2013-07-18 13:53:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-07-18 13:53:04 +0000 |
commit | eb1d270862c609961918fa1155aac99cc866ebf1 (patch) | |
tree | aefe4e719a6cb8b7f596621c6f1e8250a28508ea /include/cgen/basic-ops.h | |
parent | f0c0028234ccf31aed655d454d60f25d4f213f8d (diff) | |
download | binutils-gdb-eb1d270862c609961918fa1155aac99cc866ebf1.tar.gz |
PR binutils/15728
* basic-ops.h: (SUBWORDSIQI) Make declaration static.
* (SUBWORDSIHI): Likewise.
* (SUBWORDDIQI): Likewise.
* (SUBWORDDIHI): Likewise.
* (SUBWORDDISI): Likewise.
Diffstat (limited to 'include/cgen/basic-ops.h')
-rw-r--r-- | include/cgen/basic-ops.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/cgen/basic-ops.h b/include/cgen/basic-ops.h index 324f0b15ebd..49883f49578 100644 --- a/include/cgen/basic-ops.h +++ b/include/cgen/basic-ops.h @@ -1,5 +1,5 @@ /* Basic semantics ops support for CGEN. - Copyright 2005, 2007, 2009 Free Software Foundation, Inc. + Copyright 2005-2013 Free Software Foundation, Inc. Contributed by Red Hat. This file is part of the GNU opcodes library. @@ -295,11 +295,11 @@ extern SI TRUNCDISI (DI); significant and word number 0 is the most significant word. ??? May also wish an endian-dependent version. Later. */ -QI SUBWORDSIQI (SI, int); -HI SUBWORDSIHI (SI, int); -QI SUBWORDDIQI (DI, int); -HI SUBWORDDIHI (DI, int); -SI SUBWORDDISI (DI, int); +static QI SUBWORDSIQI (SI, int); +static HI SUBWORDSIHI (SI, int); +static QI SUBWORDDIQI (DI, int); +static HI SUBWORDDIHI (DI, int); +static SI SUBWORDDISI (DI, int); #ifdef SEMOPS_DEFINE_INLINE |