]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/testsuite/gdb.ada/array_return/pck.ads
* gdb.ada/array_return/pck.ads (Small_Float_Vector): New type.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / array_return / pck.ads
index 7f8eb239a41ee0c386153a61a87529980b73f6ca..2d646b315e640f8e57c047afa6e246c30e7f5c91 100644 (file)
@@ -20,8 +20,11 @@ package Pck is
    type Data_Small is array (1 .. 2) of Integer;
    type Data_Large is array (1 .. 4) of Integer;
 
+   type Small_Float_Vector is array (1 .. 2) of Float;
+
    function Create_Small return Data_Small;
    function Create_Large return Data_Large;
+   function Create_Small_Float_Vector return Small_Float_Vector;
 
 end Pck;