diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-12-13 07:42:55 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-12-13 07:42:55 +0100 |
commit | aa38995f30b7d0ed3d040622aecdb3e6e11385f0 (patch) | |
tree | 10597ed5ff5aa3df7472732343fa6ccb480a002e /src/ortho/llvm/ortho_llvm.private.ads | |
parent | ca2aa9ead46672e57109497e9b69bebe76dd1959 (diff) | |
download | ghdl-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.ads | 5 |
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; |