This commit is contained in:
peter 1998-08-14 18:50:16 +00:00
parent 3291b9fc23
commit f8ab2581ff
2 changed files with 11 additions and 0 deletions

10
bugs/bug0155.pp Normal file
View File

@ -0,0 +1,10 @@
function asmstr:string;assembler;
asm
movl __RESULT,%edi
movl $0x4101,%al
stosw
end;
begin
writeln(asmstr);
end;

View File

@ -205,4 +205,5 @@ bug0152.pp End value of loop variable must be calculated before loop
bug0153.pp indexing a local/para var should produce an error like tp7 because
it's doomed to crash
bug0154.pp Subrange types give type mismatch when assigning to base type
bug0155.pp Missing string return for asm functions