[gcc(refs/users/guojiufu/heads/guojiufu-branch)] Fix a typo.

Jiu Fu Guo guojiufu@gcc.gnu.org
Wed Mar 11 02:02:16 GMT 2020


https://gcc.gnu.org/g:1db97918101b2c22dfffa2242f13c7ea1b830558

commit 1db97918101b2c22dfffa2242f13c7ea1b830558
Author: Martin Liska <mliska@suse.cz>
Date:   Mon Feb 17 13:20:06 2020 +0100

    Fix a typo.
    
            PR other/93756
            * config/rx/elf.opt: Fix typo.
            PR other/93756
            * src/std/algorithm/iteration.d: Fix typo.

Diff:
---
 gcc/ChangeLog                           | 5 +++++
 gcc/config/rx/elf.opt                   | 2 +-
 libphobos/ChangeLog                     | 5 +++++
 libphobos/src/std/algorithm/iteration.d | 2 +-
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7c481407de9..a402736d006 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
+	PR other/93756
+	* config/rx/elf.opt: Fix typo.
+
 2020-02-17  Richard Biener  <rguenther@suse.de>
 
 	PR c/86134
diff --git a/gcc/config/rx/elf.opt b/gcc/config/rx/elf.opt
index d65c1ee94c4..f130e799680 100644
--- a/gcc/config/rx/elf.opt
+++ b/gcc/config/rx/elf.opt
@@ -29,7 +29,7 @@ Use the simulator runtime.
 
 mas100-syntax
 Target Mask(AS100_SYNTAX) Report
-Generate assembler output that is compatible with the Renesas AS100 assembler.  This may restrict some of the compiler's capabilities.  The default is to generate GAS compatable syntax.
+Generate assembler output that is compatible with the Renesas AS100 assembler.  This may restrict some of the compiler's capabilities.  The default is to generate GAS compatible syntax.
 
 ;---------------------------------------------------
 
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog
index 285dfa515b6..ace6a2fec92 100644
--- a/libphobos/ChangeLog
+++ b/libphobos/ChangeLog
@@ -1,3 +1,8 @@
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
+	PR other/93756
+	* src/std/algorithm/iteration.d: Fix typo.
+
 2020-01-24  Maciej W. Rozycki  <macro@wdc.com>
 
 	* m4/druntime.m4: Handle `--with-toolexeclibdir='.
diff --git a/libphobos/src/std/algorithm/iteration.d b/libphobos/src/std/algorithm/iteration.d
index 7e5782406d1..93cf1e7cfb3 100644
--- a/libphobos/src/std/algorithm/iteration.d
+++ b/libphobos/src/std/algorithm/iteration.d
@@ -3151,7 +3151,7 @@ The number of seeds must be correspondingly increased.
     static assert(!is(typeof(reduce!(min, max)(tuple(c), "hello"))));
     //"Seed (dchar, dchar, dchar) does not have the correct amount of fields (should be 2)"
     static assert(!is(typeof(reduce!(min, max)(tuple(c, c, c), "hello"))));
-    //"Incompatable function/seed/element: all(alias pred = "a")/int/dchar"
+    //"Incompatible function/seed/element: all(alias pred = "a")/int/dchar"
     static assert(!is(typeof(reduce!all(1, "hello"))));
     static assert(!is(typeof(reduce!(all, all)(tuple(1, 1), "hello"))));
 }


More information about the Gcc-cvs mailing list