[llvm] r220309 - remove function names from comments; NFC

Sanjay Patel spatel at rotateright.com
Tue Oct 21 11:26:57 PDT 2014


Author: spatel
Date: Tue Oct 21 13:26:57 2014
New Revision: 220309

URL: http://llvm.org/viewvc/llvm-project?rev=220309&view=rev
Log:
remove function names from comments; NFC

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

Modified: llvm/trunk/lib/Analysis/LibCallSemantics.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LibCallSemantics.cpp?rev=220309&r1=220308&r2=220309&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LibCallSemantics.cpp (original)
+++ llvm/trunk/lib/Analysis/LibCallSemantics.cpp Tue Oct 21 13:26:57 2014
@@ -18,7 +18,7 @@
 #include "llvm/IR/Function.h"
 using namespace llvm;
 
-/// getMap - This impl pointer in ~LibCallInfo is actually a StringMap.  This
+/// This impl pointer in ~LibCallInfo is actually a StringMap.  This
 /// helper does the cast.
 static StringMap<const LibCallFunctionInfo*> *getMap(void *Ptr) {
   return static_cast<StringMap<const LibCallFunctionInfo*> *>(Ptr);
@@ -38,7 +38,7 @@ const LibCallLocationInfo &LibCallInfo::
 }
 
 
-/// getFunctionInfo - Return the LibCallFunctionInfo object corresponding to
+/// Return the LibCallFunctionInfo object corresponding to
 /// the specified function if we have it.  If not, return null.
 const LibCallFunctionInfo *
 LibCallInfo::getFunctionInfo(const Function *F) const {





More information about the llvm-commits mailing list