diff options
Diffstat (limited to 'src/ortho/llvm')
-rw-r--r-- | src/ortho/llvm/ortho_llvm.ads | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ortho/llvm/ortho_llvm.ads b/src/ortho/llvm/ortho_llvm.ads index 8e68eb1..931977b 100644 --- a/src/ortho/llvm/ortho_llvm.ads +++ b/src/ortho/llvm/ortho_llvm.ads @@ -43,9 +43,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; + -- Start of common part type O_Enode is private; |