mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-18 10:31:57 +00:00
e1b80b6946
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79295 91177308-0d34-0410-b5e6-96231b3b80d8
53 lines
1.6 KiB
Ada
53 lines
1.6 KiB
Ada
-- This file is generated by SWIG. Do *not* modify by hand.
|
|
--
|
|
|
|
with llvm;
|
|
with Interfaces.C.Strings;
|
|
|
|
|
|
package LLVM_bit_Reader.Binding is
|
|
|
|
function LLVMParseBitcode
|
|
(MemBuf : in llvm.LLVMMemoryBufferRef;
|
|
OutModule : access llvm.LLVMModuleRef;
|
|
OutMessage : access Interfaces.C.Strings.chars_ptr)
|
|
return Interfaces.C.int;
|
|
|
|
function LLVMParseBitcodeInContext
|
|
(MemBuf : in llvm.LLVMMemoryBufferRef;
|
|
ContextRef : in llvm.LLVMContextRef;
|
|
OutModule : access llvm.LLVMModuleRef;
|
|
OutMessage : access Interfaces.C.Strings.chars_ptr)
|
|
return Interfaces.C.int;
|
|
|
|
function LLVMGetBitcodeModuleProvider
|
|
(MemBuf : in llvm.LLVMMemoryBufferRef;
|
|
OutMP : access llvm.LLVMModuleProviderRef;
|
|
OutMessage : access Interfaces.C.Strings.chars_ptr)
|
|
return Interfaces.C.int;
|
|
|
|
function LLVMGetBitcodeModuleProviderInContext
|
|
(MemBuf : in llvm.LLVMMemoryBufferRef;
|
|
ContextRef : in llvm.LLVMContextRef;
|
|
OutMP : access llvm.LLVMModuleProviderRef;
|
|
OutMessage : access Interfaces.C.Strings.chars_ptr)
|
|
return Interfaces.C.int;
|
|
|
|
private
|
|
|
|
pragma Import (C, LLVMParseBitcode, "Ada_LLVMParseBitcode");
|
|
pragma Import
|
|
(C,
|
|
LLVMParseBitcodeInContext,
|
|
"Ada_LLVMParseBitcodeInContext");
|
|
pragma Import
|
|
(C,
|
|
LLVMGetBitcodeModuleProvider,
|
|
"Ada_LLVMGetBitcodeModuleProvider");
|
|
pragma Import
|
|
(C,
|
|
LLVMGetBitcodeModuleProviderInContext,
|
|
"Ada_LLVMGetBitcodeModuleProviderInContext");
|
|
|
|
end LLVM_bit_Reader.Binding;
|