Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2013-07-18 17:53:04 +0400
committerNick Clifton <nickc@redhat.com>2013-07-18 17:53:04 +0400
commit8eeeb65f41a875b6e1ac0ff2224ec89e5c0837e2 (patch)
treeb84e1797197d5c6bfbec191e6d4f66c004556186 /include
parentaff6ef0db4767fd53eb69ea2f573ec4c8ae7c5a6 (diff)
PR binutils/15728
* basic-ops.h: (SUBWORDSIQI) Make declaration static. * (SUBWORDSIHI): Likewise. * (SUBWORDDIQI): Likewise. * (SUBWORDDIHI): Likewise. * (SUBWORDDISI): Likewise.
Diffstat (limited to 'include')
-rw-r--r--include/cgen/ChangeLog9
-rw-r--r--include/cgen/basic-ops.h12
2 files changed, 15 insertions, 6 deletions
diff --git a/include/cgen/ChangeLog b/include/cgen/ChangeLog
index 556de24e6..7692d4e54 100644
--- a/include/cgen/ChangeLog
+++ b/include/cgen/ChangeLog
@@ -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.
diff --git a/include/cgen/basic-ops.h b/include/cgen/basic-ops.h
index 324f0b15e..49883f495 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