From 6d75992674a3f7818195507d9cae1fbc8370c10f Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 6 Jan 2021 12:52:36 +0000 Subject: [PATCH] * fix proposed by Christo Crause: properly handle pointer constant nodes on avr, resolves #38321 git-svn-id: trunk@48095 - --- compiler/ncgcon.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ncgcon.pas b/compiler/ncgcon.pas index b717e70243..92950c4c7d 100644 --- a/compiler/ncgcon.pas +++ b/compiler/ncgcon.pas @@ -206,7 +206,7 @@ implementation begin { an integer const. behaves as a memory reference } location_reset(location,LOC_CONSTANT,OS_ADDR); - location.value:=aint(value); + location.value:=PInt(value); end;