aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kohler <michaelkohler@live.com>2010-08-06 05:45:23 +0000
committerAnthony Green <green@gcc.gnu.org>2010-08-06 05:45:23 +0000
commit0af2372948f7d3eec3b71e78acdecbaec8589926 (patch)
tree9bb85a1baed965dd85f093ee69c91846a652d465
parent07b6d9efd946c195216841ef71150441f870954d (diff)
downloadgcc-0af2372948f7d3eec3b71e78acdecbaec8589926.zip
gcc-0af2372948f7d3eec3b71e78acdecbaec8589926.tar.gz
gcc-0af2372948f7d3eec3b71e78acdecbaec8589926.tar.bz2
Fix spelling errors
From-SVN: r162938
-rw-r--r--libffi/ChangeLog7
-rwxr-xr-xlibffi/configure2
-rw-r--r--libffi/configure.ac2
-rw-r--r--libffi/src/dlmalloc.c2
-rw-r--r--libffi/src/ia64/ffi.c2
5 files changed, 11 insertions, 4 deletions
diff --git a/libffi/ChangeLog b/libffi/ChangeLog
index e3f9aab..e9a5d0b 100644
--- a/libffi/ChangeLog
+++ b/libffi/ChangeLog
@@ -22,6 +22,13 @@
* fficonfig.h.in: Regenerate.
* src/x86/sysv.S (.eh_frame): Use .ascii, .string or error.
+2010-05-05 Michael Kohler <michaelkohler@live.com>
+
+ * src/dlmalloc.c (dlfree): Fix spelling.
+ * src/ia64/ffi.c (ffi_prep_cif_machdep): Ditto.
+ * configure.ac: Ditto.
+ * configure: Rebuilt.
+
2010-04-07 Jakub Jelinek <jakub@redhat.com>
* regex.c (byte_re_match_2_internal): Avoid set but not used
diff --git a/libffi/configure b/libffi/configure
index a63368b..e92677a 100755
--- a/libffi/configure
+++ b/libffi/configure
@@ -11320,7 +11320,7 @@ TARGETDIR="unknown"
case "$host" in
alpha*-*-*)
TARGET=ALPHA; TARGETDIR=alpha;
- # Support 128-bit long double, changable via command-line switch.
+ # Support 128-bit long double, changeable via command-line switch.
HAVE_LONG_DOUBLE='defined(__LONG_DOUBLE_128__)'
;;
diff --git a/libffi/configure.ac b/libffi/configure.ac
index d4644a3..61e7460 100644
--- a/libffi/configure.ac
+++ b/libffi/configure.ac
@@ -43,7 +43,7 @@ TARGETDIR="unknown"
case "$host" in
alpha*-*-*)
TARGET=ALPHA; TARGETDIR=alpha;
- # Support 128-bit long double, changable via command-line switch.
+ # Support 128-bit long double, changeable via command-line switch.
HAVE_LONG_DOUBLE='defined(__LONG_DOUBLE_128__)'
;;
diff --git a/libffi/src/dlmalloc.c b/libffi/src/dlmalloc.c
index 783c5c2..2195b73 100644
--- a/libffi/src/dlmalloc.c
+++ b/libffi/src/dlmalloc.c
@@ -4192,7 +4192,7 @@ void* dlmalloc(size_t bytes) {
void dlfree(void* mem) {
/*
- Consolidate freed chunks with preceeding or succeeding bordering
+ Consolidate freed chunks with preceding or succeeding bordering
free chunks, if they exist, and then place in a bin. Intermixed
with special cases for top, dv, mmapped chunks, and usage errors.
*/
diff --git a/libffi/src/ia64/ffi.c b/libffi/src/ia64/ffi.c
index 3f8fcc5..84b1448 100644
--- a/libffi/src/ia64/ffi.c
+++ b/libffi/src/ia64/ffi.c
@@ -225,7 +225,7 @@ ffi_prep_cif_machdep(ffi_cif *cif)
int flags;
/* Adjust cif->bytes to include space for the bits of the ia64_args frame
- that preceeds the integer register portion. The estimate that the
+ that precedes the integer register portion. The estimate that the
generic bits did for the argument space required is good enough for the
integer component. */
cif->bytes += offsetof(struct ia64_args, gp_regs[0]);