view gcc/testsuite/gnat.dg/object_overflow2.adb @ 140:4e440907fcbf

copy CbC goto flang in cfgexpand remove some CbC unnecessary code
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 14 Nov 2018 00:24:45 +0900
parents 84e7813d76e9
children
line wrap: on
line source

-- { dg-do compile }

with Interfaces.C; use Interfaces.C;

procedure Object_Overflow2 is

  procedure Proc (x : Boolean) is begin null; end;

  type Arr is array(0 .. ptrdiff_t'Last) of Boolean;
  Obj : Arr; -- { dg-warning "Storage_Error" }

begin
  Obj(1) := True;
  Proc (Obj(1));
end;