fpc/tests/tbs/tb0603.pp
florian 1366498255 + nf_addr_taken: it marks nodes which address is taken
+ check if tnodeflags is 4 bytes or less
* do not do cse on expressions which address is taken

git-svn-id: trunk@26713 -
2014-02-07 20:40:42 +00:00

9 lines
121 B
ObjectPascal

{ %OPT=-O3 }
{ %norun }
program test4;
var
S : ansistring;
begin
writeln((PByte(@S[1])^ = $1) or (S[1] = '.'));
end.