aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/llvm/ortho_llvm.private.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-12-13 07:42:55 +0100
committerTristan Gingold <tgingold@free.fr>2014-12-13 07:42:55 +0100
commitaa38995f30b7d0ed3d040622aecdb3e6e11385f0 (patch)
tree10597ed5ff5aa3df7472732343fa6ccb480a002e /src/ortho/llvm/ortho_llvm.private.ads
parentca2aa9ead46672e57109497e9b69bebe76dd1959 (diff)
downloadghdl-aa38995f30b7d0ed3d040622aecdb3e6e11385f0.tar.gz
ghdl-aa38995f30b7d0ed3d040622aecdb3e6e11385f0.tar.bz2
ghdl-aa38995f30b7d0ed3d040622aecdb3e6e11385f0.zip
llvm: add generation of only debug lines table.
Diffstat (limited to 'src/ortho/llvm/ortho_llvm.private.ads')
-rw-r--r--src/ortho/llvm/ortho_llvm.private.ads5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ortho/llvm/ortho_llvm.private.ads b/src/ortho/llvm/ortho_llvm.private.ads
index 842a119b5..b1bd23c96 100644
--- a/src/ortho/llvm/ortho_llvm.private.ads
+++ b/src/ortho/llvm/ortho_llvm.private.ads
@@ -40,9 +40,12 @@ package Ortho_LLVM is
Optimization : LLVM.TargetMachine.CodeGenOptLevel :=
LLVM.TargetMachine.CodeGenLevelDefault;
- -- Set by -g to generate debug info.
+ -- Set by -g to generate full debug info.
Flag_Debug : Boolean := False;
+ -- Set by -g or -glines to generate line debug info.
+ Flag_Debug_Line : Boolean := False;
+
private
-- No support for nested subprograms in LLVM.
Has_Nested_Subprograms : constant Boolean := False;