From: Blue Swirl <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [5375] Change some qualifiers to static
Date: Wed, 01 Oct 2008 18:13:14 +0000 [thread overview]
Message-ID: <E1Kl6CI-0000g7-H5@cvs.savannah.gnu.org> (raw)
Revision: 5375
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5375
Author: blueswir1
Date: 2008-10-01 18:13:13 +0000 (Wed, 01 Oct 2008)
Log Message:
-----------
Change some qualifiers to static
Modified Paths:
--------------
trunk/sparc-dis.c
Modified: trunk/sparc-dis.c
===================================================================
--- trunk/sparc-dis.c 2008-10-01 18:08:41 UTC (rev 5374)
+++ trunk/sparc-dis.c 2008-10-01 18:13:13 UTC (rev 5375)
@@ -67,7 +67,7 @@
short supported;
};
-extern const struct sparc_opcode_arch sparc_opcode_archs[];
+static const struct sparc_opcode_arch sparc_opcode_archs[];
/* Return the bitmask of supported architectures for ARCH. */
#define SPARC_OPCODE_SUPPORTED(ARCH) (sparc_opcode_archs[ARCH].supported)
@@ -212,13 +212,14 @@
#define RS1_G0 RS1(~0)
#define RS2_G0 RS2(~0)
-extern const struct sparc_opcode sparc_opcodes[];
-extern const int sparc_num_opcodes;
+static const struct sparc_opcode sparc_opcodes[];
+static const int sparc_num_opcodes;
-extern const char *sparc_decode_asi PARAMS ((int));
-extern const char *sparc_decode_membar PARAMS ((int));
-extern const char *sparc_decode_prefetch PARAMS ((int));
-extern const char *sparc_decode_sparclet_cpreg PARAMS ((int));
+static const char *sparc_decode_asi_v8 PARAMS ((int));
+static const char *sparc_decode_asi_v9 PARAMS ((int));
+static const char *sparc_decode_membar PARAMS ((int));
+static const char *sparc_decode_prefetch PARAMS ((int));
+static const char *sparc_decode_sparclet_cpreg PARAMS ((int));
/* Some defines to make life easy. */
#define MASK_V6 SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V6)
@@ -262,7 +263,7 @@
/* Table of opcode architectures.
The order is defined in opcode/sparc.h. */
-const struct sparc_opcode_arch sparc_opcode_archs[] = {
+static const struct sparc_opcode_arch sparc_opcode_archs[] = {
{ "v6", MASK_V6 },
{ "v7", MASK_V6 | MASK_V7 },
{ "v8", MASK_V6 | MASK_V7 | MASK_V8 },
@@ -349,7 +350,7 @@
{ opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "1,i,d", 0, arch_mask }, \
{ opcode, F3(2, op3, 1), F3(~2, ~op3, ~1), "i,1,d", 0, arch_mask }
-const struct sparc_opcode sparc_opcodes[] = {
+static const struct sparc_opcode sparc_opcodes[] = {
{ "ld", F3(3, 0x00, 0), F3(~3, ~0x00, ~0), "[1+2],d", 0, v6 },
{ "ld", F3(3, 0x00, 0), F3(~3, ~0x00, ~0)|RS2_G0, "[1],d", 0, v6 }, /* ld [rs1+%g0],d */
@@ -2030,7 +2031,7 @@
};
-const int sparc_num_opcodes = ((sizeof sparc_opcodes)/(sizeof sparc_opcodes[0]));
+static const int sparc_num_opcodes = ((sizeof sparc_opcodes)/(sizeof sparc_opcodes[0]));
\f
/* Utilities for argument parsing. */
reply other threads:[~2008-10-01 18:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1Kl6CI-0000g7-H5@cvs.savannah.gnu.org \
--to=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).