[llvm] r367827 - [TLI][NFC] Fixed typo

David Bolvansky via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 5 03:14:09 PDT 2019


Author: xbolva00
Date: Mon Aug  5 03:14:09 2019
New Revision: 367827

URL: http://llvm.org/viewvc/llvm-project?rev=367827&view=rev
Log:
[TLI][NFC] Fixed typo

Modified:
    llvm/trunk/lib/Analysis/TargetLibraryInfo.cpp

Modified: llvm/trunk/lib/Analysis/TargetLibraryInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/TargetLibraryInfo.cpp?rev=367827&r1=367826&r2=367827&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/TargetLibraryInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/TargetLibraryInfo.cpp Mon Aug  5 03:14:09 2019
@@ -116,7 +116,7 @@ static void initialize(TargetLibraryInfo
     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) {




More information about the llvm-commits mailing list