diff options
author | David Bolvansky <david.bolvansky@gmail.com> | 2019-08-05 10:14:09 +0000 |
---|---|---|
committer | David Bolvansky <david.bolvansky@gmail.com> | 2019-08-05 10:14:09 +0000 |
commit | ef72cded32967ce581c9fe9af48f8d6077733eb8 (patch) | |
tree | 864e176644f3aac18d58321d8af8743db5026a79 /llvm/lib/Analysis/TargetLibraryInfo.cpp | |
parent | f686e56e7d55bdd12603e51d81993e3febdacb76 (diff) | |
download | llvm-ef72cded32967ce581c9fe9af48f8d6077733eb8.zip llvm-ef72cded32967ce581c9fe9af48f8d6077733eb8.tar.gz llvm-ef72cded32967ce581c9fe9af48f8d6077733eb8.tar.bz2 |
[TLI][NFC] Fixed typo
llvm-svn: 367827
Diffstat (limited to 'llvm/lib/Analysis/TargetLibraryInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/TargetLibraryInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/TargetLibraryInfo.cpp b/llvm/lib/Analysis/TargetLibraryInfo.cpp index ef139d325..a7bae46 100644 --- a/llvm/lib/Analysis/TargetLibraryInfo.cpp +++ b/llvm/lib/Analysis/TargetLibraryInfo.cpp @@ -116,7 +116,7 @@ static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, TLI.setUnavailable(LibFunc_log10l); } - // There are no library implementations of mempcy and memset for AMD gpus and + // There are no library implementations of memcpy and memset for AMD gpus and // these can be difficult to lower in the backend. if (T.getArch() == Triple::r600 || T.getArch() == Triple::amdgcn) { |