aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2008-09-03 15:44:33 +0000
committerNick Clifton <nickc@redhat.com>2008-09-03 15:44:33 +0000
commit704209c00fb8c3fdb54c6e30d2793948c0e3547b (patch)
tree6703d1a1156c6fa88c8b64585268fe074b87a637 /gas/config
parenta6c24e68b9c0bde0587b9fbf2a50aa09c58c207c (diff)
downloadgdb-704209c00fb8c3fdb54c6e30d2793948c0e3547b.zip
gdb-704209c00fb8c3fdb54c6e30d2793948c0e3547b.tar.gz
gdb-704209c00fb8c3fdb54c6e30d2793948c0e3547b.tar.bz2
Make new functions static.
Rearrange wording of documentation.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-i386.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index 7744b16..539ea79 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -684,6 +684,7 @@ static const arch_entry cpu_arch[] =
CPU_SSE5_FLAGS },
};
+#ifdef I386COFF
/* Like s_lcomm_internal in gas/read.c but the alignment string
is allowed to be optional. */
@@ -718,13 +719,12 @@ pe_lcomm_internal (int needs_align, symbolS *symbolP, addressT size)
return symbolP;
}
-void pe_lcomm (int);
-
-void
+static void
pe_lcomm (int needs_align)
{
s_comm_internal (needs_align * 2, pe_lcomm_internal);
}
+#endif
const pseudo_typeS md_pseudo_table[] =
{