Correct strange whitespace.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 6 Feb 2009 07:01:00 +0000 (07:01 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 6 Feb 2009 07:01:00 +0000 (07:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63927 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm-c/lto.h
tools/lto/LTOModule.cpp

index 74a070342e96d02057112c284f47105c92ca0858..1d9881425e5b5d80692d6ad4e18d697385075289 100644 (file)
@@ -86,7 +86,7 @@ lto_module_is_object_file(const char* path);
  */
 extern bool
 lto_module_is_object_file_for_target(const char* path, 
-                                            const char* target_triple_prefix);
+                                     const char* target_triple_prefix);
 
 
 /**
index 6331a59e02d6389374f6935aeb251ea894b80a0e..71f3850e525ce1e819a2514a88f8118058d4ef38 100644 (file)
@@ -108,7 +108,7 @@ MemoryBuffer* LTOModule::makeBuffer(const void* mem, size_t length)
 
 
 LTOModule* LTOModule::makeLTOModule(const void* mem, size_t length, 
-                                                        std::string& errMsg)
+                                    std::string& errMsg)
 {
     OwningPtr<MemoryBuffer> buffer(makeBuffer(mem, length));
     if ( !buffer )