From a0d4cccd873a152308f0f917f636d17ed6d86100 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Sat, 14 May 2022 21:05:08 +0200 Subject: [PATCH] Fix syntax error for isLocal field for function/procedure type LLVM debug information --- compiler/llvm/dbgllvm.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/llvm/dbgllvm.pas b/compiler/llvm/dbgllvm.pas index 18a8e852fc..d9144d7b67 100644 --- a/compiler/llvm/dbgllvm.pas +++ b/compiler/llvm/dbgllvm.pas @@ -1198,7 +1198,7 @@ implementation dinode.addboolean('isDefinition',is_definition); if is_definition then begin - dinode.addboolean('isLocal: ', + dinode.addboolean('isLocal', not((po_global in def.procoptions) and (def.parast.symtablelevel<=normal_function_level)) );