diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-18 03:04:52 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-12-18 03:04:52 +0000 |
commit | f3348095e848328e9de4c83cb0b350aba0aa42fd (patch) | |
tree | 9a75e4acccca290e0f6346eb595eb56e08277579 | |
parent | 2892a4a30280bf4ba29bbd5f45d59006dc6b5629 (diff) | |
download | bcm5719-llvm-f3348095e848328e9de4c83cb0b350aba0aa42fd.tar.gz bcm5719-llvm-f3348095e848328e9de4c83cb0b350aba0aa42fd.zip |
clang-format to reduce diff in another patch.
llvm-svn: 255981
-rw-r--r-- | llvm/include/llvm-c/BitReader.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/include/llvm-c/BitReader.h b/llvm/include/llvm-c/BitReader.h index 4c8378c8c5f..216cd1ee99b 100644 --- a/llvm/include/llvm-c/BitReader.h +++ b/llvm/include/llvm-c/BitReader.h @@ -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(LLVMContextRef ContextRef, 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); |