diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2018-08-02 14:33:30 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2018-08-02 14:33:30 +0000 |
commit | ae5bdb7f3ff3cf323dec3916cde6335f7ce42c99 (patch) | |
tree | ff0318b342386d77e215d997e3535a167a9ae3e7 /gcc | |
parent | f70cb6f5b0ee51223319ec524994e59d356fb862 (diff) | |
download | gcc-ae5bdb7f3ff3cf323dec3916cde6335f7ce42c99.zip gcc-ae5bdb7f3ff3cf323dec3916cde6335f7ce42c99.tar.gz gcc-ae5bdb7f3ff3cf323dec3916cde6335f7ce42c99.tar.bz2 |
Typo fix
Noticed by Tamar (thanks).
2018-08-02 Richard Sandiford <richard.sandiford@arm.com>
gcc/
* genemit.c (print_overload_test): Fix typo.
From-SVN: r263262
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/genemit.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a406f8e..e4aa684 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-08-02 Richard Sandiford <richard.sandiford@arm.com> + + * genemit.c (print_overload_test): Fix typo. + 2018-08-02 Richard Biener <rguenther@suse.de> PR c++/86763 diff --git a/gcc/genemit.c b/gcc/genemit.c index 9227030..675cf04 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -761,7 +761,7 @@ print_overload_arguments (overloaded_name *oname) printf ("%s%s arg%d", i == 0 ? "" : ", ", oname->arg_types[i], i); } -/* Print code to test whether INSTANCE should be chosne, given that +/* Print code to test whether INSTANCE should be chosen, given that argument N of the overload is available as "arg<N>". */ static void |