diff options
author | Martin Sebor <msebor@redhat.com> | 2017-05-04 23:54:22 +0000 |
---|---|---|
committer | Martin Sebor <msebor@gcc.gnu.org> | 2017-05-04 17:54:22 -0600 |
commit | ded507ae42e7abd227c5af2adaa92104db1039b8 (patch) | |
tree | 2a5eb2be35cb3d4dcd8cc44a3f7aea948bd59d73 /gcc/builtins.c | |
parent | d9c5a8b98a21ab0091bbe0f3dab93dd59e6c58fb (diff) | |
download | gcc-ded507ae42e7abd227c5af2adaa92104db1039b8.zip gcc-ded507ae42e7abd227c5af2adaa92104db1039b8.tar.gz gcc-ded507ae42e7abd227c5af2adaa92104db1039b8.tar.bz2 |
builtins.c: Fix a trivial typo in a comment.
gcc/ChangeLog:
* builtins.c: Fix a trivial typo in a comment.
From-SVN: r247623
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index c6ce7d6..377cdcb 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3047,7 +3047,7 @@ expand_builtin_memcpy_args (tree dest, tree src, tree len, rtx target, tree exp) MAXLEN is the user-supplied bound on the length of the source sequence (such as in strncat(d, s, N). It specifies the upper limit on the number of bytes to write. - SRC is the source string (such as in strcpy(d, s)) when the epxression + SRC is the source string (such as in strcpy(d, s)) when the expression EXP is a string function call (as opposed to a memory call like memcpy). As an exception, SRC can also be an integer denoting the precomputed size of the source string or object (for functions like memcpy). |