fpc/tests/webtbs/tw18334.pp
florian 1da7dc513c * limit test to armv7m
git-svn-id: trunk@23277 -
2013-01-01 18:14:40 +00:00

18 lines
241 B
ObjectPascal

{ %cpu=arm }
{ %norun }
procedure test; assembler;
asm
(* not sure which CPUs really support it (FK) *)
{$ifdef CPU_ARMV7M}
cps #0
cpsie aif, #0
cpsid aif, #0
cpsie aif
cpsid aif
{$endif CPU_ARMV7M}
end;
begin
end.