From bac4ca19e7298e0395e7d3d7e7fc370fce1fe769 Mon Sep 17 00:00:00 2001 From: "J. Gareth \"Curious Kit\" Moreton" Date: Sun, 28 Jan 2024 00:12:48 +0000 Subject: [PATCH] * Fixed internal error 2022041701 number clash (LLVM changed to 2022041730) --- 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 2b00d52d23..3574f30ef4 100644 --- a/compiler/llvm/dbgllvm.pas +++ b/compiler/llvm/dbgllvm.pas @@ -758,7 +758,7 @@ implementation begin filemeta:=file_getmetanode(fileinfo.moduleindex,fileinfo.fileindex); if not assigned(filemeta) then - internalerror(2022041701); + internalerror(2022041730); result:=tai_llvmspecialisedmetadatanode.create(tspecialisedmetadatanodekind.DILocation); result.addqword('line',fileinfo.line); result.addqword('column',fileinfo.column);