PR binutils/15728
authorNick Clifton <nickc@redhat.com>
Thu, 18 Jul 2013 13:53:04 +0000 (13:53 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 18 Jul 2013 13:53:04 +0000 (13:53 +0000)
* basic-ops.h: (SUBWORDSIQI) Make declaration static.
* (SUBWORDSIHI): Likewise.
* (SUBWORDDIQI): Likewise.
* (SUBWORDDIHI): Likewise.
* (SUBWORDDISI): Likewise.

include/cgen/ChangeLog
include/cgen/basic-ops.h

index 556de24..7692d4e 100644 (file)
@@ -1,3 +1,12 @@
+2013-07-18  Andrew Neitsch  <andrew@neitsch.ca>
+
+       PR binutils/15728
+       * basic-ops.h: (SUBWORDSIQI) Make declaration static.
+       * (SUBWORDSIHI): Likewise.
+       * (SUBWORDDIQI): Likewise.
+       * (SUBWORDDIHI): Likewise.
+       * (SUBWORDDISI): Likewise.
+
 2010-01-05  Doug Evans  <dje@sebabeach.org>
 
        * basic-modes.h (MAKEDI): New macro.
index 324f0b1..49883f4 100644 (file)
@@ -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