From 2931b43000b5950b345e8f2aba87ec384e36b284 Mon Sep 17 00:00:00 2001 From: "J. Gareth \"Curious Kit\" Moreton" Date: Thu, 12 May 2022 23:17:21 +0100 Subject: [PATCH] * New test for #39713 --- tests/webtbs/tw39713.pp | 47 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 tests/webtbs/tw39713.pp diff --git a/tests/webtbs/tw39713.pp b/tests/webtbs/tw39713.pp new file mode 100644 index 0000000000..f5f2fab3cd --- /dev/null +++ b/tests/webtbs/tw39713.pp @@ -0,0 +1,47 @@ +{ %OPT=-O3 -CriotR } +program tw39713; + +{ Internal Error 200203272 would get triggered when align was inlined } + +function align(i,a:longint):longint; inline; +{ + return value aligned boundary. must be power of two. +} + begin + { One-line formula for i >= 0 is + >>> (i + a - 1) and not (a - 1), + and for i < 0 is + >>> i and not (a - 1). } + + if a>0 then + a:=a-1; { 'a' is decremented beforehand, this also allows a=0 as a synonym for a=1. } + if i>=0 then + i:=i+a; + align:=i and not a; + end; + +procedure IncVar(Input: LongInt; var IncrementVar: LongInt); noinline; + begin + Inc(IncrementVar, align(Input,4)); + end; + +const + Expected: array[0..5] of LongInt = (0, 5, 6, 7, 8, 13); + var + X, Y, IncrementVar: LongInt; +begin + IncrementVar := 0; + + for X := 0 to 5 do + begin + IncrementVar := X; + IncVar(X, IncrementVar); + if IncrementVar <> Expected[X] then + begin + WriteLn('FAILED on X = ', X, '; expected ', Expected[X], ' got ', Y); + Halt(1); + end; + end; + + Writeln('ok'); +end.