Browse Source

* Fixed internal error 2022041701 number clash (LLVM changed to 2022041730)

J. Gareth "Curious Kit" Moreton 1 year ago
parent
commit
bac4ca19e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/llvm/dbgllvm.pas

+ 1 - 1
compiler/llvm/dbgllvm.pas

@@ -758,7 +758,7 @@ implementation
       begin
       begin
         filemeta:=file_getmetanode(fileinfo.moduleindex,fileinfo.fileindex);
         filemeta:=file_getmetanode(fileinfo.moduleindex,fileinfo.fileindex);
         if not assigned(filemeta) then
         if not assigned(filemeta) then
-          internalerror(2022041701);
+          internalerror(2022041730);
         result:=tai_llvmspecialisedmetadatanode.create(tspecialisedmetadatanodekind.DILocation);
         result:=tai_llvmspecialisedmetadatanode.create(tspecialisedmetadatanodekind.DILocation);
         result.addqword('line',fileinfo.line);
         result.addqword('line',fileinfo.line);
         result.addqword('column',fileinfo.column);
         result.addqword('column',fileinfo.column);