mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:59:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			146 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			146 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %cpu=i386 }
 | 
						|
 | 
						|
function A: pointer; assembler; nostackframe;
 | 
						|
asm
 | 
						|
  pushl $A
 | 
						|
  popl %eax
 | 
						|
end;
 | 
						|
 | 
						|
begin
 | 
						|
  if A <> pointer(@A) then
 | 
						|
    halt(1);
 | 
						|
end.
 | 
						|
 |