warn5.adb
来自「用于进行gcc测试」· ADB 代码 · 共 35 行
ADB
35 行
-- { dg-do compile }with System;with Unchecked_Conversion;procedure Warn5 is type Digit_Type is range 0..15; type Frequency_Type is array( 1..12) of Digit_Type; pragma Pack(Frequency_Type); type Element_Type is record F : Frequency_Type; end record; type Array_Type is array (Natural range <>) of Element_Type; type List_Type is record A : Array_Type (0..1); end record; for List_Type'Alignment use 4; type Pointer_Type is access Element_Type; function To_Ptr is new Unchecked_Conversion(System.Address, Pointer_Type); function Pointer (Pos : Natural; List : List_Type) return Pointer_Type is begin return To_Ptr(List.A(Pos)'Address); -- { dg-warning "source alignment" "" { target alpha*-*-* hppa*-*-* ia64-*-* mips*-*-* sparc*-*-* } } end;begin null;end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?