[llvm] r255981 - clang-format to reduce diff in another patch.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 17 19:04:53 PST 2015


Author: rafael
Date: Thu Dec 17 21:04:52 2015
New Revision: 255981

URL: http://llvm.org/viewvc/llvm-project?rev=255981&view=rev
Log:
clang-format to reduce diff in another patch.

Modified:
    llvm/trunk/include/llvm-c/BitReader.h

Modified: llvm/trunk/include/llvm-c/BitReader.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/BitReader.h?rev=255981&r1=255980&r2=255981&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/BitReader.h (original)
+++ llvm/trunk/include/llvm-c/BitReader.h Thu Dec 17 21:04:52 2015
@@ -35,8 +35,8 @@ extern "C" {
 /* Builds a module from the bitcode in the specified memory buffer, returning a
    reference to the module via the OutModule parameter. Returns 0 on success.
    Optionally returns a human-readable error message via OutMessage. */
-LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
-                          LLVMModuleRef *OutModule, char **OutMessage);
+LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
+                          char **OutMessage);
 
 LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
                                    LLVMMemoryBufferRef MemBuf,
@@ -47,8 +47,7 @@ LLVMBool LLVMParseBitcodeInContext(LLVMC
     Optionally returns a human-readable error message via OutMessage. */
 LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef,
                                        LLVMMemoryBufferRef MemBuf,
-                                       LLVMModuleRef *OutM,
-                                       char **OutMessage);
+                                       LLVMModuleRef *OutM, char **OutMessage);
 
 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
                               char **OutMessage);




More information about the llvm-commits mailing list