diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-06-25 18:21:11 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-06-25 18:21:11 +0200 |
commit | c689d10d872647492ce117b3134d0dd2d998d26f (patch) | |
tree | 81c5ef34bda2a090b2189f731ccf7f735a6f29de /src/ortho/llvm6/ortho_llvm.ads | |
parent | d85a1a9dcc4ebe3bafc746ea27ba38c5c7f78681 (diff) | |
download | ghdl-c689d10d872647492ce117b3134d0dd2d998d26f.tar.gz ghdl-c689d10d872647492ce117b3134d0dd2d998d26f.tar.bz2 ghdl-c689d10d872647492ce117b3134d0dd2d998d26f.zip |
llvm6: fix debug info for llvm-10
Diffstat (limited to 'src/ortho/llvm6/ortho_llvm.ads')
-rw-r--r-- | src/ortho/llvm6/ortho_llvm.ads | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ortho/llvm6/ortho_llvm.ads b/src/ortho/llvm6/ortho_llvm.ads index f3634a5c8..b342140dc 100644 --- a/src/ortho/llvm6/ortho_llvm.ads +++ b/src/ortho/llvm6/ortho_llvm.ads @@ -354,6 +354,7 @@ package Ortho_LLVM is -- Allowed conversions are: -- FIXME: to write. function New_Convert_Ov (Val : O_Enode; Rtype : O_Tnode) return O_Enode; + function New_Convert (Val : O_Enode; Rtype : O_Tnode) return O_Enode; -- Get the address of LVALUE. -- ATYPE must be a type access whose designated type is the type of LVALUE. @@ -755,6 +756,7 @@ private pragma Import (C, New_Compare_Op); pragma Import (C, New_Convert_Ov); + pragma Import (C, New_Convert); pragma Import (C, New_Alloca); pragma Import (C, New_Signed_Literal); |