summaryrefslogtreecommitdiffstats
path: root/llvm/include/llvm-c
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2009-08-11 07:46:16 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2009-08-11 07:46:16 +0000
commit70ede4843cf8ca089e8477cd17003615c66c984a (patch)
tree991e8dd4bbc6d669d1928337c88358b50e4fe48d /llvm/include/llvm-c
parent192d7c0752c1e94e50ab48103edb4a50c1360aa3 (diff)
downloadbcm5719-llvm-70ede4843cf8ca089e8477cd17003615c66c984a.tar.gz
bcm5719-llvm-70ede4843cf8ca089e8477cd17003615c66c984a.zip
Change llvm-c's ordering of contexts to make it consistent.
llvm-svn: 78656
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r--llvm/include/llvm-c/BitReader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm-c/BitReader.h b/llvm/include/llvm-c/BitReader.h
index 5dce27eb23b..a184f609d6b 100644
--- a/llvm/include/llvm-c/BitReader.h
+++ b/llvm/include/llvm-c/BitReader.h
@@ -32,8 +32,8 @@ extern "C" {
int LLVMParseBitcode(LLVMMemoryBufferRef MemBuf,
LLVMModuleRef *OutModule, char **OutMessage);
-int LLVMParseBitcodeInContext(LLVMMemoryBufferRef MemBuf,
- LLVMContextRef ContextRef,
+int LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
+ LLVMMemoryBufferRef MemBuf,
LLVMModuleRef *OutModule, char **OutMessage);
/* Reads a module from the specified path, returning via the OutMP parameter
@@ -43,8 +43,8 @@ int LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
LLVMModuleProviderRef *OutMP,
char **OutMessage);
-int LLVMGetBitcodeModuleProviderInContext(LLVMMemoryBufferRef MemBuf,
- LLVMContextRef ContextRef,
+int LLVMGetBitcodeModuleProviderInContext(LLVMContextRef ContextRef,
+ LLVMMemoryBufferRef MemBuf,
LLVMModuleProviderRef *OutMP,
char **OutMessage);
OpenPOWER on IntegriCloud