summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2015-12-18 03:04:52 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2015-12-18 03:04:52 +0000
commit1fef99c857a6ecca56f1665d1518ee875a093484 (patch)
treea0bf57e85bf514c9e1579259b4a88869128cdeed /include
parent5862853db7ee22e6244f1736963c98fba47bd0dc (diff)
clang-format to reduce diff in another patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm-c/BitReader.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm-c/BitReader.h b/include/llvm-c/BitReader.h
index 4c8378c8c5f..216cd1ee99b 100644
--- a/include/llvm-c/BitReader.h
+++ b/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);