summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libgcc/ChangeLog30
-rw-r--r--libgcc/config/arm/ieee754-df.S4
-rw-r--r--libgcc/config/arm/ieee754-sf.S2
-rw-r--r--libgcc/config/c6x/libunwind.S2
-rw-r--r--libgcc/config/epiphany/udivsi3-float.c2
-rw-r--r--libgcc/config/microblaze/muldi3_hard.S2
-rw-r--r--libgcc/config/picochip/adddi3.S2
-rw-r--r--libgcc/config/picochip/ashlsi3.S2
-rw-r--r--libgcc/config/picochip/ashrsi3.S2
-rw-r--r--libgcc/config/picochip/clzsi2.S2
-rw-r--r--libgcc/config/picochip/cmpsi2.S2
-rw-r--r--libgcc/config/picochip/divmod15.S2
-rw-r--r--libgcc/config/picochip/divmodhi4.S2
-rw-r--r--libgcc/config/picochip/divmodsi4.S2
-rw-r--r--libgcc/config/picochip/longjmp.S2
-rw-r--r--libgcc/config/picochip/lshrsi3.S2
-rw-r--r--libgcc/config/picochip/parityhi2.S2
-rw-r--r--libgcc/config/picochip/popcounthi2.S2
-rw-r--r--libgcc/config/picochip/setjmp.S2
-rw-r--r--libgcc/config/picochip/subdi3.S2
-rw-r--r--libgcc/config/picochip/ucmpsi2.S2
-rw-r--r--libgcc/config/picochip/udivmodhi4.S2
-rw-r--r--libgcc/config/picochip/udivmodsi4.S2
-rw-r--r--libgcc/config/spu/divv2df3.c2
-rw-r--r--libgcc/config/spu/mfc_multi_tag_release.c2
-rw-r--r--libgcc/config/spu/mfc_tag_release.c2
-rw-r--r--libgcc/configure2
-rw-r--r--libgcc/configure.ac2
28 files changed, 58 insertions, 28 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog
index 5c048f53149..38b9e562d51 100644
--- a/libgcc/ChangeLog
+++ b/libgcc/ChangeLog
@@ -1,3 +1,33 @@
+2012-05-29 Joseph Myers <joseph@codesourcery.com>
+
+ * config/arm/ieee754-df.S: Fix typos.
+ * config/arm/ieee754-sf.S: Fix typos.
+ * config/c6x/libunwind.S: Fix typos.
+ * config/epiphany/udivsi3-float.c: Fix typos.
+ * config/microblaze/muldi3_hard.S: Fix typos.
+ * config/picochip/adddi3.S: Fix typos.
+ * config/picochip/ashlsi3.S: Fix typos.
+ * config/picochip/ashrsi3.S: Fix typos.
+ * config/picochip/clzsi2.S: Fix typos.
+ * config/picochip/cmpsi2.S: Fix typos.
+ * config/picochip/divmod15.S: Fix typos.
+ * config/picochip/divmodhi4.S: Fix typos.
+ * config/picochip/divmodsi4.S: Fix typos.
+ * config/picochip/longjmp.S: Fix typos.
+ * config/picochip/lshrsi3.S: Fix typos.
+ * config/picochip/parityhi2.S: Fix typos.
+ * config/picochip/popcounthi2.S: Fix typos.
+ * config/picochip/setjmp.S: Fix typos.
+ * config/picochip/subdi3.S: Fix typos.
+ * config/picochip/ucmpsi2.S: Fix typos.
+ * config/picochip/udivmodhi4.S: Fix typos.
+ * config/picochip/udivmodsi4.S: Fix typos.
+ * config/spu/divv2df3.c: Fix typos.
+ * config/spu/mfc_multi_tag_release.c: Fix typos.
+ * config/spu/mfc_tag_release.c: Fix typos.
+ * configure.ac: Fix typos.
+ * configure: Regenerate.
+
2012-05-25 Ian Lance Taylor <iant@google.com>
* config/i386/morestack.S (__morestack_non_split): Check whether
diff --git a/libgcc/config/arm/ieee754-df.S b/libgcc/config/arm/ieee754-df.S
index eb0c38632d0..99f1ebb796f 100644
--- a/libgcc/config/arm/ieee754-df.S
+++ b/libgcc/config/arm/ieee754-df.S
@@ -922,7 +922,7 @@ ARM_FUNC_ALIAS aeabi_ddiv divdf3
teqne r5, ip
bleq LSYM(Ldv_s)
- @ Substract divisor exponent from dividend''s.
+ @ Subtract divisor exponent from dividend''s.
sub r4, r4, r5
@ Preserve final sign into lr.
@@ -956,7 +956,7 @@ ARM_FUNC_ALIAS aeabi_ddiv divdf3
movs yh, yh, lsr #1
mov yl, yl, rrx
1:
- @ Perform first substraction to align result to a nibble.
+ @ Perform first subtraction to align result to a nibble.
subs r6, r6, yl
sbc r5, r5, yh
movs yh, yh, lsr #1
diff --git a/libgcc/config/arm/ieee754-sf.S b/libgcc/config/arm/ieee754-sf.S
index c93f66d8ff8..cf4ff0e144f 100644
--- a/libgcc/config/arm/ieee754-sf.S
+++ b/libgcc/config/arm/ieee754-sf.S
@@ -661,7 +661,7 @@ ARM_FUNC_ALIAS aeabi_fdiv divsf3
beq LSYM(Ldv_s)
LSYM(Ldv_x):
- @ Substract divisor exponent from dividend''s
+ @ Subtract divisor exponent from dividend''s
sub r2, r2, r3
@ Preserve final sign into ip.
diff --git a/libgcc/config/c6x/libunwind.S b/libgcc/config/c6x/libunwind.S
index d37ea5730bf..7e649837806 100644
--- a/libgcc/config/c6x/libunwind.S
+++ b/libgcc/config/c6x/libunwind.S
@@ -113,7 +113,7 @@ restore_core_regs:
# Zero demand saved flags
mvk .s1 0, A0
stw .d2t1 A0, *+B15[1]
- # Save return address, setup additional argument and call fucntion
+ # Save return address, setup additional argument and call function
stw .d2t2 B3, *+B15[35]
add .d\argside B15, 4, \argreg
do_call __gnu\name
diff --git a/libgcc/config/epiphany/udivsi3-float.c b/libgcc/config/epiphany/udivsi3-float.c
index c7f10590c49..db5a390c3e9 100644
--- a/libgcc/config/epiphany/udivsi3-float.c
+++ b/libgcc/config/epiphany/udivsi3-float.c
@@ -40,7 +40,7 @@ __udivsi3 (unsigned int a, unsigned int b)
/* Assuming B is nonzero, compute S0 such that 0 <= S0,
(B << S0+1) does not overflow,
- A < 4.01 * (B << S0), with S0 choosen as small as possible
+ A < 4.01 * (B << S0), with S0 chosen as small as possible
without taking to much time calculating. */
#ifdef CONVERT_UNSIGNED
u0.f = a;
diff --git a/libgcc/config/microblaze/muldi3_hard.S b/libgcc/config/microblaze/muldi3_hard.S
index 14cfff59772..1b6fff306e8 100644
--- a/libgcc/config/microblaze/muldi3_hard.S
+++ b/libgcc/config/microblaze/muldi3_hard.S
@@ -68,7 +68,7 @@ muldi3_hardproc:
swi r26,r1,24
swi r27,r1,28
-# Load all the 16 bit values for A thru H
+# Load all the 16 bit values for A through H
lhui r20,r1,44 # A
lhui r21,r1,46 # B
lhui r22,r1,48 # C
diff --git a/libgcc/config/picochip/adddi3.S b/libgcc/config/picochip/adddi3.S
index 77373ed9f64..860455e4cc2 100644
--- a/libgcc/config/picochip/adddi3.S
+++ b/libgcc/config/picochip/adddi3.S
@@ -62,7 +62,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/ashlsi3.S b/libgcc/config/picochip/ashlsi3.S
index 688cd8d96ff..880738e2da7 100644
--- a/libgcc/config/picochip/ashlsi3.S
+++ b/libgcc/config/picochip/ashlsi3.S
@@ -61,7 +61,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/ashrsi3.S b/libgcc/config/picochip/ashrsi3.S
index fddd70b6895..d0e024819c8 100644
--- a/libgcc/config/picochip/ashrsi3.S
+++ b/libgcc/config/picochip/ashrsi3.S
@@ -69,7 +69,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/clzsi2.S b/libgcc/config/picochip/clzsi2.S
index d5c99aa7154..9d519b16eae 100644
--- a/libgcc/config/picochip/clzsi2.S
+++ b/libgcc/config/picochip/clzsi2.S
@@ -56,7 +56,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/cmpsi2.S b/libgcc/config/picochip/cmpsi2.S
index 95322f32419..1c90ce3922d 100644
--- a/libgcc/config/picochip/cmpsi2.S
+++ b/libgcc/config/picochip/cmpsi2.S
@@ -79,7 +79,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/divmod15.S b/libgcc/config/picochip/divmod15.S
index d314b3be570..77a1acbda97 100644
--- a/libgcc/config/picochip/divmod15.S
+++ b/libgcc/config/picochip/divmod15.S
@@ -128,7 +128,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/divmodhi4.S b/libgcc/config/picochip/divmodhi4.S
index 9dad674c7bc..f7b32fa978c 100644
--- a/libgcc/config/picochip/divmodhi4.S
+++ b/libgcc/config/picochip/divmodhi4.S
@@ -115,7 +115,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/divmodsi4.S b/libgcc/config/picochip/divmodsi4.S
index 4fc1acb1b63..c2f86dff25b 100644
--- a/libgcc/config/picochip/divmodsi4.S
+++ b/libgcc/config/picochip/divmodsi4.S
@@ -100,7 +100,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/longjmp.S b/libgcc/config/picochip/longjmp.S
index d2a80aca730..e62ac4eda99 100644
--- a/libgcc/config/picochip/longjmp.S
+++ b/libgcc/config/picochip/longjmp.S
@@ -49,7 +49,7 @@ _picoMark_FUNCTION_BEGIN=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/lshrsi3.S b/libgcc/config/picochip/lshrsi3.S
index 4fc53902955..c394a69596f 100644
--- a/libgcc/config/picochip/lshrsi3.S
+++ b/libgcc/config/picochip/lshrsi3.S
@@ -59,7 +59,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/parityhi2.S b/libgcc/config/picochip/parityhi2.S
index b9d0cdc63dd..b85a56e4360 100644
--- a/libgcc/config/picochip/parityhi2.S
+++ b/libgcc/config/picochip/parityhi2.S
@@ -46,7 +46,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/popcounthi2.S b/libgcc/config/picochip/popcounthi2.S
index 2da618c96de..07f3e846b57 100644
--- a/libgcc/config/picochip/popcounthi2.S
+++ b/libgcc/config/picochip/popcounthi2.S
@@ -68,7 +68,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/setjmp.S b/libgcc/config/picochip/setjmp.S
index 247c715f6a9..8063b2b362e 100644
--- a/libgcc/config/picochip/setjmp.S
+++ b/libgcc/config/picochip/setjmp.S
@@ -49,7 +49,7 @@ _picoMark_FUNCTION_BEGIN=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/subdi3.S b/libgcc/config/picochip/subdi3.S
index d1c833ea824..359e9d51d81 100644
--- a/libgcc/config/picochip/subdi3.S
+++ b/libgcc/config/picochip/subdi3.S
@@ -59,7 +59,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/ucmpsi2.S b/libgcc/config/picochip/ucmpsi2.S
index 10c03cfcd6e..713e04f52ae 100644
--- a/libgcc/config/picochip/ucmpsi2.S
+++ b/libgcc/config/picochip/ucmpsi2.S
@@ -77,7 +77,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/udivmodhi4.S b/libgcc/config/picochip/udivmodhi4.S
index ac16fae39cf..7d84a2da7a2 100644
--- a/libgcc/config/picochip/udivmodhi4.S
+++ b/libgcc/config/picochip/udivmodhi4.S
@@ -106,7 +106,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/picochip/udivmodsi4.S b/libgcc/config/picochip/udivmodsi4.S
index 92c2a4983ce..8e7c03e6d22 100644
--- a/libgcc/config/picochip/udivmodsi4.S
+++ b/libgcc/config/picochip/udivmodsi4.S
@@ -186,7 +186,7 @@ _picoMark_FUNCTION_END=
// All DWARF information between this marker, and the END OF DWARF
// marker should be included in the source file. Search for
// FUNCTION_STACK_SIZE_GOES_HERE and FUNCTION NAME GOES HERE, and
-// provide the relevent information. Add markers called
+// provide the relevant information. Add markers called
// _picoMark_FUNCTION_BEGIN and _picoMark_FUNCTION_END around the
// function in question.
//============================================================================
diff --git a/libgcc/config/spu/divv2df3.c b/libgcc/config/spu/divv2df3.c
index 9d5e1a594e1..7615516711b 100644
--- a/libgcc/config/spu/divv2df3.c
+++ b/libgcc/config/spu/divv2df3.c
@@ -77,7 +77,7 @@ __divv2df3 (vector double a_in, vector double b_in)
a_exp_1s = (vec_ullong2)spu_cmpeq(a_exp, exp_mask_u32);
b_exp_1s = (vec_ullong2)spu_cmpeq(b_exp, exp_mask_u32);
- /* Identify all possible special values that must be accomodated including:
+ /* Identify all possible special values that must be accommodated including:
* +-denorm, +-0, +-infinity, and NaNs.
*/
a_denorm0= (vec_ullong2)spu_cmpeq(a_exp, 0);
diff --git a/libgcc/config/spu/mfc_multi_tag_release.c b/libgcc/config/spu/mfc_multi_tag_release.c
index 62eb2beeb8f..8dc1583ee83 100644
--- a/libgcc/config/spu/mfc_multi_tag_release.c
+++ b/libgcc/config/spu/mfc_multi_tag_release.c
@@ -26,7 +26,7 @@ extern vector unsigned int __mfc_tag_table;
/* Release a sequential group of tags from exclusive use. The sequential
group of tags is the range starting from <first_tag> through
- <first_tag>+<number_of_tags>-1. Upon sucessful release, MFC_DMA_TAG_VALID
+ <first_tag>+<number_of_tags>-1. Upon successful release, MFC_DMA_TAG_VALID
is returned and the tags become available for future reservation.
If the specified tags were not previously reserved, no action is
diff --git a/libgcc/config/spu/mfc_tag_release.c b/libgcc/config/spu/mfc_tag_release.c
index d59c5713053..f1b5bd09c5b 100644
--- a/libgcc/config/spu/mfc_tag_release.c
+++ b/libgcc/config/spu/mfc_tag_release.c
@@ -25,7 +25,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
extern vector unsigned int __mfc_tag_table;
/* Release the specified DMA tag from exclusive use. Once released, the
- tag is available for future reservation. Upon sucessful release,
+ tag is available for future reservation. Upon successful release,
MFC_DMA_TAG_VALID is returned. If the specified tag is not in the
range 0 to 31, or had not been reserved, no action is taken and
MFC_DMA_TAG_INVALID is returned. */
diff --git a/libgcc/configure b/libgcc/configure
index 0751859c8fc..a226f811659 100644
--- a/libgcc/configure
+++ b/libgcc/configure
@@ -4358,7 +4358,7 @@ fi
# See if we have thread-local storage. We can only test assembler
-# sicne link-time and run-time tests require the newly built
+# since link-time and run-time tests require the newly built
# gcc, which can't be used to build executable due to that libgcc
# is yet to be built here.
diff --git a/libgcc/configure.ac b/libgcc/configure.ac
index 47fe4e84d2a..24b15f0b178 100644
--- a/libgcc/configure.ac
+++ b/libgcc/configure.ac
@@ -315,7 +315,7 @@ fi
AC_SUBST(vis_hide)
# See if we have thread-local storage. We can only test assembler
-# sicne link-time and run-time tests require the newly built
+# since link-time and run-time tests require the newly built
# gcc, which can't be used to build executable due to that libgcc
# is yet to be built here.
GCC_CHECK_CC_TLS
OpenPOWER on IntegriCloud