Browse Source

Fix syntax error for isLocal field for function/procedure type LLVM debug information

Pierre Muller 3 years ago
parent
commit
a0d4cccd87
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/llvm/dbgllvm.pas

+ 1 - 1
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))
                   );