Naming conventional tidy up.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2011-03-18 17:24:21 +00:00
parent 1cb19a4470
commit 82c25b4964

View File

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