mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:47:59 +02:00
* temporarily fix #37034 by disabling the problematic optimization until the real cause is fixed
git-svn-id: trunk@45655 -
This commit is contained in:
parent
c6c996f506
commit
62c417c8bf
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -18318,6 +18318,7 @@ tests/webtbs/tw3695.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3697.pp svneol=native#text/plain
|
||||
tests/webtbs/tw3700.pp svneol=native#text/plain
|
||||
tests/webtbs/tw37013.pp svneol=native#text/plain
|
||||
tests/webtbs/tw37034.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw37060.pp svneol=native#text/plain
|
||||
tests/webtbs/tw37062.pp svneol=native#text/pascal
|
||||
tests/webtbs/tw3708.pp svneol=native#text/plain
|
||||
|
@ -742,6 +742,7 @@ implementation
|
||||
;
|
||||
end;
|
||||
end;
|
||||
{$ifdef break_inlining}
|
||||
{ simple sequence of tempcreate, assign and return temp.? }
|
||||
if GetStatements(left,a) and
|
||||
(a[0].left.nodetype=tempcreaten) and
|
||||
@ -764,6 +765,7 @@ implementation
|
||||
firstpass(result);
|
||||
exit;
|
||||
end;
|
||||
{$endif break_inlining}
|
||||
end;
|
||||
|
||||
|
||||
|
28
tests/webtbs/tw37034.pp
Normal file
28
tests/webtbs/tw37034.pp
Normal file
@ -0,0 +1,28 @@
|
||||
program Test;
|
||||
|
||||
{$mode objfpc}
|
||||
{$h+}
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
{$assertions on}
|
||||
|
||||
function Suffix: string; inline;
|
||||
begin
|
||||
Result := 'Post';
|
||||
end;
|
||||
|
||||
const
|
||||
Expected = 'Pre_Mid_Post';
|
||||
var
|
||||
s, t: string;
|
||||
begin
|
||||
DefaultSystemCodePage:=1252;
|
||||
writeln(DefaultSystemCodePage);
|
||||
writeln(StringCodePage(suffix));
|
||||
s := 'Pre';
|
||||
t := s + '_Mid_' + Suffix;
|
||||
Assert(t = Expected,format('Expected "%s", Got: "%s"',[Expected,t]));
|
||||
writeln('Ok');
|
||||
end.
|
Loading…
Reference in New Issue
Block a user