Fix a typo.

PR other/93756
	* config/rx/elf.opt: Fix typo.
	PR other/93756
	* src/std/algorithm/iteration.d: Fix typo.
This commit is contained in:
Martin Liska 2020-02-17 13:20:06 +01:00
parent abe13e1847
commit 1db9791810
No known key found for this signature in database
GPG Key ID: 4DC182DC0FA73785
4 changed files with 12 additions and 2 deletions

View File

@ -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

View File

@ -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.
;---------------------------------------------------

View File

@ -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='.

View File

@ -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"))));
}