diff options
author | Martin Liska <mliska@suse.cz> | 2021-05-19 15:25:36 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2021-05-19 15:25:36 +0200 |
commit | 32bd0353db37af2cb023e575ed4ce8c944fd9dba (patch) | |
tree | 53fc8ce9f521053c458f2203399a6fc84c7a2d36 /gcc/jit/libgccjit.c | |
parent | 7bb4b7a5ca984f7d860f33c9b791f425b264a71f (diff) | |
download | gcc-32bd0353db37af2cb023e575ed4ce8c944fd9dba.zip gcc-32bd0353db37af2cb023e575ed4ce8c944fd9dba.tar.gz gcc-32bd0353db37af2cb023e575ed4ce8c944fd9dba.tar.bz2 |
Fix typos.
PR testsuite/100658
gcc/cp/ChangeLog:
* mangle.c (write_encoding): Fix typos.
gcc/jit/ChangeLog:
* libgccjit.c (gcc_jit_context_new_function): Fix typos.
gcc/testsuite/ChangeLog:
* gcc.dg/local1.c: Fix typos.
* gcc.dg/ucnid-5-utf8.c: Likewise.
* gcc.dg/ucnid-5.c: Likewise.
Diffstat (limited to 'gcc/jit/libgccjit.c')
-rw-r--r-- | gcc/jit/libgccjit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jit/libgccjit.c b/gcc/jit/libgccjit.c index 0cc650f..7fa9480 100644 --- a/gcc/jit/libgccjit.c +++ b/gcc/jit/libgccjit.c @@ -909,7 +909,7 @@ gcc_jit_context_new_function (gcc_jit_context *ctxt, RETURN_NULL_IF_FAIL (return_type, ctxt, loc, "NULL return_type"); RETURN_NULL_IF_FAIL (name, ctxt, loc, "NULL name"); /* The assembler can only handle certain names, so for now, enforce - C's rules for identiers upon the name, using ISALPHA and ISALNUM + C's rules for identifiers upon the name, using ISALPHA and ISALNUM from safe-ctype.h to ignore the current locale. Eventually we'll need some way to interact with e.g. C++ name mangling. */ |