URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [warn4.adb] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-O2" } with Unchecked_Conversion; procedure Warn4 is type POSIX_Character is new Standard.Character; type POSIX_String is array (Positive range <>) of aliased POSIX_Character; type String_Ptr is access all String; type POSIX_String_Ptr is access all POSIX_String; function sptr_to_psptr is new Unchecked_Conversion -- { dg-warning "aliasing problem" } (String_Ptr, POSIX_String_Ptr); -- { dg-warning "" "" { target *-*-* } 14 } function To_POSIX_String (Str : String) return POSIX_String; function To_POSIX_String (Str : String) return POSIX_String is begin return sptr_to_psptr (Str'Unrestricted_Access).all; end To_POSIX_String; A : Boolean; S : String := "ABCD/abcd"; P : Posix_String := "ABCD/abcd"; begin A := To_POSIX_String (S) = P; end;
Go to most recent revision | Compare with Previous | Blame | View Log