Naming conventional tidy up.
authorJim Grosbach <grosbach@apple.com>
Fri, 18 Mar 2011 17:24:21 +0000 (17:24 +0000)
committerJim Grosbach <grosbach@apple.com>
Fri, 18 Mar 2011 17:24:21 +0000 (17:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127886 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-rtdyld/llvm-rtdyld.cpp

index 01c3ead10e51bdd89be352212740d6dd3228387e..42b6f633f10c4d9f5bb5b5e865200c0416cb1b77 100644 (file)
@@ -52,7 +52,7 @@ static int Error(const Twine &Msg) {
 
 /* *** */
 
-static int ExecuteInput() {
+static int executeInput() {
   // Load the input memory buffer.
   OwningPtr<MemoryBuffer> InputBuffer;
   if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFile, InputBuffer))
@@ -224,7 +224,7 @@ int main(int argc, char **argv) {
   switch (Action) {
   default:
   case AC_Execute:
-    return ExecuteInput();
+    return executeInput();
   }
 
   return 0;