diff options
Diffstat (limited to 'src/ortho/llvm/llvm-core.ads')
-rw-r--r-- | src/ortho/llvm/llvm-core.ads | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ortho/llvm/llvm-core.ads b/src/ortho/llvm/llvm-core.ads index 4a72d5d19..7ec85c284 100644 --- a/src/ortho/llvm/llvm-core.ads +++ b/src/ortho/llvm/llvm-core.ads @@ -318,6 +318,9 @@ package LLVM.Core is function VoidType return TypeRef; function LabelType return TypeRef; + -- See Module::dump. + procedure DumpType(T : TypeRef); + -- Values ------------------------------------------------------------ -- The bulk of LLVM's object model consists of values, which comprise a very -- rich type hierarchy. @@ -998,6 +1001,7 @@ private pragma Import (C, VoidType, "LLVMVoidType"); pragma Import (C, LabelType, "LLVMLabelType"); + pragma Import (C, DumpType, "LLVMDumpType"); pragma Import (C, TypeOf, "LLVMTypeOf"); pragma Import (C, GetValueName, "LLVMGetValueName"); |