diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-03-18 17:24:21 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-03-18 17:24:21 +0000 |
commit | 82c25b4964f91760fb4731cdef114b2ba2a950cc (patch) | |
tree | d73982eedb32c728f78cb3b1b90d2479f76f762c | |
parent | 1cb19a4470533be84eb61e8f5fc40aa9d45f86f9 (diff) |
Naming conventional tidy up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127886 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvm-rtdyld/llvm-rtdyld.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-rtdyld/llvm-rtdyld.cpp b/tools/llvm-rtdyld/llvm-rtdyld.cpp index 01c3ead10e..42b6f633f1 100644 --- a/tools/llvm-rtdyld/llvm-rtdyld.cpp +++ b/tools/llvm-rtdyld/llvm-rtdyld.cpp @@ -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; |