Committed as an obvious patch.
gcc/testsuite/ChangeLog:
PR target/114148
* gcc.target/i386/pr106010-7b.c: Refine testcase.
---
gcc/testsuite/gcc.target/i386/pr106010-7b.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gcc/testsuite/gcc.target/i386/
On Wed, Jul 26, 2023 at 01:54:01PM +0800, Kewen.Lin wrote:
> Hi Mike,
>
> on 2023/7/11 03:59, Michael Meissner wrote:
> > In doing other work, I noticed that there was an insn:
> >
> > vsx_extract_v4sf__load
> >
> > Which did not have an iterator. I removed the useless .
>
> It actually ha
Hi Mike,
on 2023/7/11 03:59, Michael Meissner wrote:
> In doing other work, I noticed that there was an insn:
>
> vsx_extract_v4sf__load
>
> Which did not have an iterator. I removed the useless .
It actually has a mode iterator, the "P" is used for clobber.
The whole pattern of this de
Ping clean-up patch.
| Date: Mon, 10 Jul 2023 15:59:44 -0400
| From: Michael Meissner
| Subject: [PATCH] Fix typo in insn name.
| Message-ID:
As I said in the reply, the only thing this patch does is to rename
vsx_extract_v4sf__load to vsx_extract_v4sf_load since the insn does not
use a mode
Antony Polukhin 2023-07-11 09:51:58 UTC
There's a typo at
https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/testsuite/g%2B%2B.target/i386/pr110170.C;h=e638b12a5ee2264ecef77acca86432a9f24b103b;hb=d41a57c46df6f8f7dae0c0a8b349e734806a837b#l87
It should be `|| !test3() || !test3r()` rather than `|| !te
On Mon, Jul 10, 2023 at 03:10:21PM -0500, Segher Boessenkool wrote:
> Hi!
>
> On Mon, Jul 10, 2023 at 03:59:44PM -0400, Michael Meissner wrote:
> > In doing other work, I noticed that there was an insn:
> >
> > vsx_extract_v4sf__load
> >
> > Which did not have an iterator. I removed the use
Hi!
On Mon, Jul 10, 2023 at 03:59:44PM -0400, Michael Meissner wrote:
> In doing other work, I noticed that there was an insn:
>
> vsx_extract_v4sf__load
>
> Which did not have an iterator. I removed the useless .
This patch does that, you mean.
> --- a/gcc/config/rs6000/vsx.md
> +++ b/
In doing other work, I noticed that there was an insn:
vsx_extract_v4sf__load
Which did not have an iterator. I removed the useless .
I have tested this patch on the following systems and there was no degration.
Can I check it into the trunk branch?
* Power10, LE, --with-cpu=powe
There was a typo in the attributes of the option
-param=vect-induction-float= for IntegerRange.
This fixes that typo.
Committed to GCC 12 branch as obvious after a build/test.
gcc/ChangeLog:
PR tree-optimization/109427
* params.opt (-param=vect-induction-float=):
Fix opti
There was a typo in the attributes of the option
-param=vect-induction-float= for IntegerRange.
This fixes that typo.
Committed as obvious after a build/test.
gcc/ChangeLog:
PR tree-optimization/109427
* params.opt (-param=vect-induction-float=):
Fix option attribute typo
On Wed, Nov 16, 2022 at 8:29 AM Kewen.Lin wrote:
>
> Hi,
>
> As Robin spotted, my recent commit r13-3716 caused an ICE
> on s390 if vector access with length is enabled there (his
> patch for the enablement hasn't been committed yet). The
> failure is caused by one stupid typo, the bias on s390 i
Hi,
As Robin spotted, my recent commit r13-3716 caused an ICE
on s390 if vector access with length is enabled there (his
patch for the enablement hasn't been committed yet). The
failure is caused by one stupid typo, the bias on s390 is
-1, so the assertion should use tree_fits_shwi_p rather
than
On 9/23/22 12:43, Torbjörn SVENSSON via Gcc-patches wrote:
The "RISC-V specific attributes" section should be at the same level
as "PowerPC-specific attributes".
gcc/ChangeLog:
* doc/sourcebuild.texi: Fix chapter level.
OK
jeff
The "RISC-V specific attributes" section should be at the same level
as "PowerPC-specific attributes".
gcc/ChangeLog:
* doc/sourcebuild.texi: Fix chapter level.
Signed-off-by: Torbjörn SVENSSON
---
gcc/doc/sourcebuild.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --
Fix typo and commit as obvious.
Signed-off-by: Xionghu Luo
gcc/ChangeLog:
* cgraph.cc (cgraph_edge::redirect_call_stmt_to_callee): Fix
typo.
* tree-ssa-loop-ivopts.cc (struct iv_cand): Likewise.
* tree-switch-conversion.h: Likewise.
---
gcc/cgraph.cc
On December 22, 2021 1:03:18 PM GMT+01:00, "Martin Liška"
wrote:
>Hello.
>
>The patch is quite obvious fix.
>
>Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
>
>Ready to be installed?
Ok.
Richard.
>Thanks,
>Martin
>
> PR ipa/103786
>
>gcc/ChangeLog:
>
> *
Hello.
The patch is quite obvious fix.
Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
Ready to be installed?
Thanks,
Martin
PR ipa/103786
gcc/ChangeLog:
* tree.c (verify_type): Fix typo.
---
gcc/tree.c | 2 +-
1 file changed, 1 insertion(+), 1 deletio
On Thu, Nov 25, 2021 at 9:00 AM liuhongt via Gcc-patches
wrote:
>
> TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (@2)) supposed to check
> integer type but not pointer type, so use second parameter instead.
>
> i.e. first parameter is VPTR, second parameter is I4.
>
> 582DEF_SYNC_BUILTIN (BU
TYPE_PRECISION (type) < TYPE_PRECISION (TREE_TYPE (@2)) supposed to check
integer type but not pointer type, so use second parameter instead.
i.e. first parameter is VPTR, second parameter is I4.
582DEF_SYNC_BUILTIN (BUILT_IN_ATOMIC_FETCH_OR_4,
583 "__atomic_fetch_or_4",
584
On Sun, Aug 08, 2021 at 03:21:02PM -0500, Segher Boessenkool wrote:
> On Thu, Aug 05, 2021 at 10:44:36PM -0400, Michael Meissner wrote:
> > * gcc.target/powerpc/fold-vec-load-builtin_vec_xl-char.c: Fix
> > typo in regular expression.
> > * gcc.target/powerpc/fold-vec-load-builtin_vec_xl
On Thu, Aug 05, 2021 at 10:44:36PM -0400, Michael Meissner wrote:
> * gcc.target/powerpc/fold-vec-load-builtin_vec_xl-char.c: Fix
> typo in regular expression.
> * gcc.target/powerpc/fold-vec-load-builtin_vec_xl-double.c:
> Likewise.
> * gcc.target/powerpc/fold-vec-loa
Hi Mike,
FWIW, looks fine to me, if tests are all passing now.
Bill
On 8/5/21 9:44 PM, Michael Meissner wrote:
[PATCH] Fix typo in fold-vec-load-builtin_vec_xl-* tests.
When I checked in the fix for running tests on power10 systems with
power10 code generation, I had a typo in the
fold-vec
[PATCH] Fix typo in fold-vec-load-builtin_vec_xl-* tests.
When I checked in the fix for running tests on power10 systems with
power10 code generation, I had a typo in the
fold-vec-load-builtin_vec_xl-* tests, swapping 'x' and 'v' in the p?lxv
pattern.
I checked this patc
Hi:
pushed to master.
Remove xfail for pr92658-avx512vl.c
Typo of standard pattern name has been fixed by r12-1970, remove those
xfails.
gcc/testsuite/ChangeLog
* gcc.target/i386/pr92658-avx512vl.c: Refine testcase.
diff --git a/gcc/testsuite/gcc.target/i386/pr92
This caused
XPASS: gcc.target/i386/pr92658-avx512vl.c scan-assembler-times vpmovqw 2
FAIL: gcc.target/i386/pr92658-avx512vl.c scan-assembler-times vpmovdw 1
XPASS: gcc.target/i386/pr92658-avx512vl.c scan-assembler-times vpmovdw 2
liuhongt via Gcc-patches 于2021年7月1日周四 下午3:45写道:
>
> Bootstrapped
Bootstrapped and regtested on x86_64-linux-gnu{-m32,}.
Pushed to trunk as abvious fix.
gcc/ChangeLog
* config/i386/sse.md (trunc2): Refined to ..
(trunc2): this.
---
gcc/config/i386/sse.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gcc/config/i386/
On 3/7/2021 4:10 PM, Ahamed Husni via Gcc-patches wrote:
Hi all,
This is my first contribution for an open source project. Please guide
me if anything is missing.
diff --git a/gcc/gcc/asan.c b/gcc/gcc/asan.c
index 89ecd99b182..836f50bd44a 100755
--- a/gcc/gcc/asan.c
+++ b/gcc/gcc/asan.c
@
Hi all,
This is my first contribution for an open source project. Please guide
me if anything is missing.
diff --git a/gcc/gcc/asan.c b/gcc/gcc/asan.c
index 89ecd99b182..836f50bd44a 100755
--- a/gcc/gcc/asan.c
+++ b/gcc/gcc/asan.c
@@ -105,7 +105,7 @@ along with GCC; see the file COPYING3. If
On Thu, 21 Jan 2021 at 14:39, Kyrylo Tkachov wrote:
>
>
>
> > -Original Message-
> > From: Gcc-patches On Behalf Of
> > Christophe Lyon via Gcc-patches
> > Sent: 21 January 2021 13:37
> > To: gcc-patches@gcc.gnu.org
> > Subject: [PATCH] Fix t
> -Original Message-
> From: Gcc-patches On Behalf Of
> Christophe Lyon via Gcc-patches
> Sent: 21 January 2021 13:37
> To: gcc-patches@gcc.gnu.org
> Subject: [PATCH] Fix typo in arm_mve.h __arm_vcmpneq_s8 return type
>
> Like all vcmp intrinsics, __arm_vc
Like all vcmp intrinsics, __arm_vcmpneq_s8 should return a mve_pred16_t.
2021-01-21 Christophe Lyon
gcc/
* config/arm/arm_mve.h (__arm_vcmpneq_s8): Fix return type.
---
gcc/config/arm/arm_mve.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/config/arm/
Hi all,
just pushed the following as obvious.
Regards
Andrea
>From 1aff68d54c33ae10fbbb52adb50527baf7b2f627 Mon Sep 17 00:00:00 2001
From: Andrea Corallo
Date: Tue, 12 Jan 2021 17:52:52 +0100
Subject: [PATCH] Fix typo in function-abi.h
gcc/Changelog
2021-01-12 Andrea Cora
Qian Jianhua writes:
> This patch fixes a typo in the document of GCC Internals.
Pushed to trunk, thanks.
Richard
>
> ---
> gcc/doc/generic.texi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gcc/doc/generic.texi b/gcc/doc/generic.texi
> index 827c4232aef..fb98727928a
Hi
This patch fixes a typo in the document of GCC Internals.
---
gcc/doc/generic.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/doc/generic.texi b/gcc/doc/generic.texi
index 827c4232aef..fb98727928a 100644
--- a/gcc/doc/generic.texi
+++ b/gcc/doc/generic.texi
@@ -88
Hu Jiangping writes:
> Hi,
>
> this patch fix a typo in contribute.html.
>
> Best Regards.
> Hujp
Thanks for the patch, pushed to gcc-wwwdocs.
Richard
>
> ---
> htdocs/contribute.html | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/htdocs/contribute.html b/htdocs/contr
Hi,
this patch fix a typo in contribute.html.
Best Regards.
Hujp
---
htdocs/contribute.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/htdocs/contribute.html b/htdocs/contribute.html
index 80a4470e..a913565b 100644
--- a/htdocs/contribute.html
+++ b/htdocs/contribute.ht
I'm pushing the following fix that caused occasional ICEs:
gcc /home/marxin/Programming/gcc/gcc/testsuite/gcc.dg/tree-ssa/pr68714.c -O3 -c
during GIMPLE pass: reassoc
/home/marxin/Programming/gcc/gcc/testsuite/gcc.dg/tree-ssa/pr68714.c: In
function ‘f’:
/home/marxin/Programming/gcc/gcc/testsuit
On Thu, Jun 4, 2020 at 8:09 AM Hongtao Liu via Gcc-patches
wrote:
>
> This patch to is fix uppercase of mode in trunc2, it
> should be lowercase for standard pattern name.
>
> Bootstrap is ok, regression test on i386/x86-64 backend is ok.
OK.
Richard.
> gcc/ChangeLog:
> * config/i386/
This patch to is fix uppercase of mode in trunc2, it
should be lowercase for standard pattern name.
Bootstrap is ok, regression test on i386/x86-64 backend is ok.
gcc/ChangeLog:
* config/i386/sse.md (pmov_dst_3_lower): New mode attribute.
(trunc2): Refine from
trunc2.
g
Hi.
I'm sending a typo fix in the flatten warning.
Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
Thanks,
Martin
gcc/ChangeLog:
2020-03-29 Martin Liska
PR ipa/94363
* cgraphunit.c (process_function_and_variable_attributes): Remove
double 'at
on 2020/1/13 下午6:46, Richard Sandiford wrote:
> "Kewen.Lin" writes:
>> Hi,
>>
>> Function average_num_loop_insns forgets to free loop body in early return.
>> Besides, overflow comparison checks 100 (e6) but the return value is
>> 10 (e5), I guess it's unexpected, a typo?
>>
>> Bootstrap
"Kewen.Lin" writes:
> Hi,
>
> Function average_num_loop_insns forgets to free loop body in early return.
> Besides, overflow comparison checks 100 (e6) but the return value is
> 10 (e5), I guess it's unexpected, a typo?
>
> Bootstrapped and regress tested on powerpc64le-linux-gnu.
> I
Hi,
Function average_num_loop_insns forgets to free loop body in early return.
Besides, overflow comparison checks 100 (e6) but the return value is
10 (e5), I guess it's unexpected, a typo?
Bootstrapped and regress tested on powerpc64le-linux-gnu.
I guess this should go to GCC11? Is i
Hello,
This patch fixes an obvious typo in a macro name used to
guard some definitions used later on in vxcrtstuff.c, leading
to an unexpected mix of symbols in a vxcrtbegin variant and
incorrect behavior for the corresponding mode at run time.
Tested in accordance with the description in
https:/
On Wed, Nov 27, 2019 at 11:32:24AM +0800, Hongtao Liu wrote:
> hi jakub:
> VF is used for differentiating AVX512F/AVX/SSE, but there's
> condition TARGET_AVX512F in avx512f_maskcmp3, it must be a TYPO
> and should be VF_AVX512VL instead.
>
> Bootstrap and regression test on i386/x86_64 backend i
hi jakub:
VF is used for differentiating AVX512F/AVX/SSE, but there's
condition TARGET_AVX512F in avx512f_maskcmp3, it must be a TYPO
and should be VF_AVX512VL instead.
Bootstrap and regression test on i386/x86_64 backend is ok.
OK for trunk?
diff --git a/gcc/config/i386/sse.md b/gcc/config/i3
Committed.
Richard.
2019-10-24 Richard Biener
PR tree-optimization/65930
* gcc.dg/vect/vect-reduc-2short.c: Fix typo.
Index: gcc/testsuite/gcc.dg/vect/vect-reduc-2short.c
===
--- gcc/testsuite/gcc.dg/vect/vect-
Resending and adding the jit list.
There seems to be a typo in gcc/jit/Make-lang.in where it references an
undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
---
gcc/jit/Make-lang.in | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gcc/jit/Make-lang.in b/gcc/
Hi any feedback on this?
Thanks.
On Tue, Jul 23, 2019 at 02:49:13PM -0400, Arvind Sankar wrote:
> There seems to be a typo in gcc/jit/Make-lang.in where it references an
> undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
> ---
> gcc/jit/Make-lang.in | 5 ++---
> 1 file changed, 2
There seems to be a typo in gcc/jit/Make-lang.in where it references an
undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
---
gcc/jit/Make-lang.in | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in
index 660f54d78bd..
On Fri, May 31, 2019 at 3:43 PM Martin Liška wrote:
>
> Hi.
>
> I've been working on an overhaul of IPA ICF and I noticed that issue.
>
> Looks to me obvious.
>
> Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
>
> Ready to be installed?
OK.
Richard.
> Thanks,
> Martin
>
Hi.
I've been working on an overhaul of IPA ICF and I noticed that issue.
Looks to me obvious.
Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
Ready to be installed?
Thanks,
Martin
gcc/ChangeLog:
2019-05-31 Martin Liska
* fold-const.c (operand_equal_p): Fix
* files.c (search_path_exhausted): Fix typo in comment.
Committed as obvious.
commit 0e105a283e738b74744fa806a19d5f4afe56732a
Author: Jonathan Wakely
Date: Wed Apr 3 18:55:08 2019 +0100
Fix typo in comment
* files.c (search_path_exhausted): Fix typo in comment.
I observed the odd looking code while looking into something else and confirmed
prior behavior (before r248863) was to sum the counts of the non-latch
predecessors of the loop (in order to scale the loop such that it no longer
appears to iterate).
Bootstrap/regtest on powerpc64le with no regres
On 10/4/18 2:58 AM, Richard Biener wrote:
> On Wed, 3 Oct 2018, Christophe Lyon wrote:
>
>> On Mon, 1 Oct 2018 at 11:36, Richard Biener wrote:
>>>
>>>
>>> The following typo-fix happens to fix a --param max-peel-branches limit
>>> caused missed peeling. The typo is present everywhere, the missed
On Wed, 3 Oct 2018, Christophe Lyon wrote:
> On Mon, 1 Oct 2018 at 11:36, Richard Biener wrote:
> >
> >
> > The following typo-fix happens to fix a --param max-peel-branches limit
> > caused missed peeling. The typo is present everywhere, the missed
> > peeling is a regression from GCC 7.
> >
>
On Mon, 1 Oct 2018 at 11:36, Richard Biener wrote:
>
>
> The following typo-fix happens to fix a --param max-peel-branches limit
> caused missed peeling. The typo is present everywhere, the missed
> peeling is a regression from GCC 7.
>
> Bootstrap and regtest running on x86_64-unknown-linux-gnu.
The following typo-fix happens to fix a --param max-peel-branches limit
caused missed peeling. The typo is present everywhere, the missed
peeling is a regression from GCC 7.
Bootstrap and regtest running on x86_64-unknown-linux-gnu.
I'm not really considering to backport this anywhere. Note t
Giuliano Augusto Faulin Belinassi writes:
> There was a small typo in the current version of trunk, more precisely
> in genmatch.c and exp_unst.ads. This patch fixes it.
>
> Changelog:
>
> 2018-08-23 Giuliano Belinassi
>
> * genmatch.c: Fix typo 'exapnded' to 'expanded'.
> * exp_unst.ads
There was a small typo in the current version of trunk, more precisely
in genmatch.c and exp_unst.ads. This patch fixes it.
Changelog:
2018-08-23 Giuliano Belinassi
* genmatch.c: Fix typo 'exapnded' to 'expanded'.
* exp_unst.ads: Likewise.
I don't think this requires a test case :P
In
I committed this in r263032.
On 07/27/2018 09:53 AM, Martin Sebor wrote:
My yesterday's change to tree-ssa-strlen.c introduced a test
for INTEGER_TYPE where INTEGRAL_TYPE_P should have been used,
causing a subsequent ICE when the latter was supplied.
The attached patch corrects the test and als
My yesterday's change to tree-ssa-strlen.c introduced a test
for INTEGER_TYPE where INTEGRAL_TYPE_P should have been used,
causing a subsequent ICE when the latter was supplied.
The attached patch corrects the test and also makes the subsequent
code more robust and be prepared for the test to fai
On Mon, Jun 11, 2018 at 09:05:26AM +0200, Martin Liška wrote:
> Hi.
>
> This is typo I did when MPX was removed. I'm moving back hunk with
> BUILT_IN_STPCPY_CHK.
>
> Ready after testing?
> Martin
>
> gcc/ChangeLog:
>
> 2018-06-11 Martin Liska
>
> PR tree-optimization/86089
>
Hi.
This is typo I did when MPX was removed. I'm moving back hunk with
BUILT_IN_STPCPY_CHK.
Ready after testing?
Martin
gcc/ChangeLog:
2018-06-11 Martin Liska
PR tree-optimization/86089
* tree-ssa-strlen.c (get_string_length): Move back removed hunk.
gcc/testsuite/ChangeLo
On 24/11/17 18:03 +0100, Stephan Bergmann wrote:
Otherwise, at least recent Clang trunk with -std=gnu++17 complains
In file included from
lib/gcc/x86_64-pc-linux-gnu/8.0.0/../../../../include/c++/8.0.0/functional:60:
In file included from
lib/gcc/x86_64-pc-linux-gnu/8.0.0/../../../../include/
17:55:38 +0100
Subject: [PATCH] Fix typo in unordered_map deduction guide, missing "typename
="
...as correctly appears in all the other deduction guides in these files.
---
libstdc++-v3/include/bits/unordered_map.h | 2 +-
libstdc++-v3/include/debug/unordered_map | 2 +-
2 files ch
I was playing around a bit last night and found that
struct-layout-1_generate.c which creates the structure layout
compatibility tests has an out of bounds array index.
struct-layout-1_generate.c: In function ‘generate_fields’:
struct-layout-1_generate.c:1896:24: warning: array subscript is above
I noticed this typo while working on PR77729. Trivial, obvious, and
committed.
Segher
2017-09-17 Segher Boessenkool
* simplify-rtx.c (simplify_binary_operation_1): Fix typo in comment.
---
gcc/simplify-rtx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/
Bootstrapped and tested on x86_64-unknown-linux-gnu, applied.
Richard.
2017-09-12 Richard Biener
PR middle-end/82149
* match.pd ((FTYPE) N CMP CST): Fix typo.
Index: gcc/match.pd
===
--- gcc/match.pd(rev
On Mon, Jul 31, 2017 at 04:37:19PM +0300, Ville Voutilainen wrote:
> On 31 July 2017 at 16:25, Marek Polacek wrote:
> > The documentation of std::stack says that the underlying container must
> > support
> > pop_front, but that is wrong, it meant to say pop_back, so this patch fixes
> > that.
>
On 31 July 2017 at 16:25, Marek Polacek wrote:
> The documentation of std::stack says that the underlying container must
> support
> pop_front, but that is wrong, it meant to say pop_back, so this patch fixes
> that.
Indeed, the documentation has a copy-pasto originating from bits/stl_queue.h.
The documentation of std::stack says that the underlying container must support
pop_front, but that is wrong, it meant to say pop_back, so this patch fixes
that.
Ok for trunk?
2017-07-31 Marek Polacek
PR libstdc++/81599
* include/bits/stl_stack.h: Fix typo.
diff --git gcc/inc
Hello.
Installing as obvious as it only touches comment.
Martin
>From 4b0eebe5accdc7aa0782acccdd61a151c0a48378 Mon Sep 17 00:00:00 2001
From: marxin
Date: Wed, 31 May 2017 13:35:41 +0200
Subject: [PATCH] Fix typo in a comment in cpuid.h (PR target/79155).
gcc/ChangeLog:
2017-05-31 Mar
It was pointed out to me that we have "the these" in docs. Thus fixed.
Applying to trunk.
2017-05-09 Marek Polacek
* doc/invoke.texi: Fix typo.
diff --git gcc/doc/invoke.texi gcc/doc/invoke.texi
index 3308b63..2a075b2 100644
--- gcc/doc/invoke.texi
+++ gcc/doc/invoke.texi
@@ -4279,1
I'm committing this patch to fix a typo in /* Define if ... */ comment
that ends up in config.h
This was submitted as a pull request against the unofficial github
mirror: https://github.com/gcc-mirror/gcc/pull/10
* acinclude.m4 (GLIBCXX_CHECK_S_ISREG_OR_S_IFREG): Fix typo in
comm
On 02/21/2017 10:52 AM, Jakub Jelinek wrote:
> On Tue, Feb 21, 2017 at 10:44:40AM +0100, Martin Liška wrote:
>> The patch is obvious, however should I also replace the option in *.po files:
>
> Ok for trunk.
>
>> gcc/po/be.po:msgid "Known assembler dialects (for use with the
>> -masm-dialect= op
On Tue, Feb 21, 2017 at 10:44:40AM +0100, Martin Liška wrote:
> The patch is obvious, however should I also replace the option in *.po files:
Ok for trunk.
> gcc/po/be.po:msgid "Known assembler dialects (for use with the -masm-dialect=
> option):"
> gcc/po/da.po:msgid "Known assembler dialects (
s.po:msgid "Known assembler dialects (for use with the -masm-dialect=
option):"
gcc/po/es.po:msgstr "Dialectos de ensamblador conocidos (para uso con la opción
-masm-dialect=):"
...
Thanks,
Martin
>From 3fed8dfda9f63de9dce96754b09214e8c31d7fa7 Mon Sep 17 00:00:00 2001
From: m
* doc/xml/manual/profile_mode.xml: Fix typo.
* doc/html/manual/profile_mode_devel.html: Regenerate.
Committed to trunk.
commit 70bd84b48945ab73c35f0c841614dc51f72697ca
Author: redi
Date: Fri Sep 16 22:09:15 2016 +
Fix typo in Libstdc++ Profile Mode docs
*
Hi all,
Committing the typo fix as obvious.
Thanks,
Kyrill
2016-06-14 Kyrylo Tkachov
* expmed.h: Close parenthesis in "at your option" in copyright
boilerplate.
* lower-subreg.h: Likewise.
diff --git a/gcc/expmed.h b/gcc/expmed.h
index 304ce02d78a9e3e024c13caee7869d67dfdab65c..a
Committed to trunk.
commit 9d7cfe77dece94e80e93aebc0c159824b33fcfd5
Author: Jonathan Wakely
Date: Thu Apr 7 12:28:38 2016 +0100
* config/cpu/sh/atomicity.h: Fix typo in comment.
diff --git a/libstdc++-v3/config/cpu/sh/atomicity.h b/libstdc++-v3/config/cpu/sh/atomicity.h
index bc62cf8..9
Here it is.
gcc/
* config/i386/i386.c (m_SKYLAKE_AVX512): Fix typo.
Yulia
On Tue, Nov 3, 2015 at 5:32 PM, Uros Bizjak wrote:
> On Tue, Nov 3, 2015 at 3:16 PM, Yulia Koval wrote:
>> Hi,
>>
>> This patch fixes a typo: PROCESSOT -> PROCESSOR. Ok for trunk?
>
> Trivial patch, OK with a suitabl
On Tue, Nov 3, 2015 at 3:16 PM, Yulia Koval wrote:
> Hi,
>
> This patch fixes a typo: PROCESSOT -> PROCESSOR. Ok for trunk?
Trivial patch, OK with a suitable ChangeLog.
Uros.
Hi,
This patch fixes a typo: PROCESSOT -> PROCESSOR. Ok for trunk?
Yulia
patch
Description: Binary data
On 07/13/2015 11:00 AM, Marek Polacek wrote:
While working on a new warning I found this typo.
Bootstrapped/regtested on x86_64-linux, ok for trunk?
2015-07-13 Marek Polacek
* rtl.c (rtx_equal_p_cb): Fix typo.
OK.
jeff
While working on a new warning I found this typo.
Bootstrapped/regtested on x86_64-linux, ok for trunk?
2015-07-13 Marek Polacek
* rtl.c (rtx_equal_p_cb): Fix typo.
diff --git gcc/rtl.c gcc/rtl.c
index dccf298..b1b485e 100644
--- gcc/rtl.c
+++ gcc/rtl.c
@@ -441,7 +441,7 @@ rtx_equal_
On Sun, 10 May 2015 22:07:53 -0600, Jeff Law wrote:
> On 05/10/2015 03:00 PM, Paulo Matos wrote:
> Yes. This would fall under the obvious rule and can be committed
> without waiting for approvals.
>
> jeff
Thanks. Committed.
--
Paulo Matos
On 05/10/2015 03:00 PM, Paulo Matos wrote:
OK to commit?
2015-05-10 Paulo Matos
* configure.ac: Fix typo.
* configure: Regenerate.
Yes. This would fall under the obvious rule and can be committed
without waiting for approvals.
jeff
OK to commit?
2015-05-10 Paulo Matos
* configure.ac: Fix typo.
* configure: Regenerate.
diff --git a/configure b/configure
index a3f66ba..8ee279f 100755
--- a/configure
+++ b/configure
@@ -7423,7 +7423,7 @@ fi
# multilib is not explicitly enabled.
Hi Benno,
I tested your fixes on i386-unknown-freebsd10.1 -- you never
know, after some of these could have been reflected in some
test case for example -- and committed them on your behalf.
Sorry for none of us looking into this for so long. If you
find further typos or phrases that need improv
On Fri, Mar 27, 2015 at 10:55:48AM +0100, Marek Polacek wrote:
> Ok?
Sure, it is obvious.
> 2015-03-27 Marek Polacek
>
> * gimple-iterator.h (gsi_prev_nondebug): Fix typo.
>
> diff --git gcc/gimple-iterator.h gcc/gimple-iterator.h
> index 6be88dd..9aa7508 100644
> --- gcc/gimple-iterat
Ok?
2015-03-27 Marek Polacek
* gimple-iterator.h (gsi_prev_nondebug): Fix typo.
diff --git gcc/gimple-iterator.h gcc/gimple-iterator.h
index 6be88dd..9aa7508 100644
--- gcc/gimple-iterator.h
+++ gcc/gimple-iterator.h
@@ -250,7 +250,7 @@ gsi_next_nondebug (gimple_stmt_iterator *i)
w
On March 11, 2015 2:32:18 PM CET, Marek Polacek wrote:
>This patch fixes a pretty obvious typo: we couldn't possibly want to
>test
>whether a variable equals itself. PR c/54979 is an RFE for a warning
>that
>would detect such cases.
>
>Bootstrapped/regtested on x86_64-linux, ok for active branche
This patch fixes a pretty obvious typo: we couldn't possibly want to test
whether a variable equals itself. PR c/54979 is an RFE for a warning that
would detect such cases.
Bootstrapped/regtested on x86_64-linux, ok for active branches?
2015-03-11 Marek Polacek
PR tree-optimization/6
Index: gcc/ChangeLog
===
--- gcc/ChangeLog (revision 217506)
+++ gcc/ChangeLog (working copy)
@@ -1,3 +1,9 @@
+2014-11-13 Felix Yang
+
+ * ipa-utils.h: Fix typo in comments.
+ * ipa-profile.c: Likewise.
+
On 10/13/14 20:49, Kito Cheng wrote:
Hi Marc:
- -1 if it is not a cost classe. */
+ -1 if it is not a cost classes. */
"a cost class", no plural here.
Thank you for correcting me :)
Hi Jeff:
Thanks, and updated patch in attachment,
However I don't have commit right yet, can you
you help me to commit it? thanks.
From e00ad515d77fd491266b743548f3c0705731fb71 Mon Sep 17 00:00:00 2001
From: Kito Cheng
Date: Fri, 22 Aug 2014 16:27:18 +0800
Subject: [PATCH] Fix typo in comment for IRA
2014-10-14 Kito Cheng
* ira.c: Fix typo in comment.
* ira.h: Ditto.
* ira-build.c: Dit
On Mon, 13 Oct 2014, Kito Cheng wrote:
- -1 if it is not a cost classe. */
+ -1 if it is not a cost classes. */
"a cost class", no plural here.
--
Marc Glisse
On 10/13/14 02:09, Kito Cheng wrote:
Hi all:
This patch contain lots typo fix for IRA module by aspell :)
ChangeLog
2014-10-13 Kito Cheng
* ira.c: Fix typo in comment.
* ira.h: Ditto.
* ira-build.c: Ditto.
* ira-color.c: Ditto.
* ira-emit.c: Dit
.
* ira-lives.c: Ditto.
From e7268d1f6e3367a345b2e614a21e596c6ccf621f Mon Sep 17 00:00:00 2001
From: Kito Cheng
Date: Fri, 22 Aug 2014 16:27:18 +0800
Subject: [PATCH] Fix typo in comment for IRA
2014-10-13 Kito Cheng
* ira.c: Fix typo in comment.
* ira.h: Ditto.
* ira-build.c: Ditto.
* ira
1 - 100 of 140 matches
Mail list logo