mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 11:01:35 +08:00
* gdb.ada/array_return/pck.ads: Add copyright notice.
* gdb.ada/array_return/pck.adb: Likewise. * gdb.ada/array_return/p.adb: Likewise. * gdb.ada/exec_changed/first.adb: Likewise. * gdb.ada/exec_changed/second.adb: Likewise.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2006-10-06 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* gdb.ada/array_return/pck.ads: Add copyright notice.
|
||||||
|
* gdb.ada/array_return/pck.adb: Likewise.
|
||||||
|
* gdb.ada/array_return/p.adb: Likewise.
|
||||||
|
* gdb.ada/exec_changed/first.adb: Likewise.
|
||||||
|
* gdb.ada/exec_changed/second.adb: Likewise.
|
||||||
|
|
||||||
2006-10-06 Joel Brobecker <brobecker@adacore.com>
|
2006-10-06 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* gdb.ada/watch_arg/watch.adb: New file.
|
* gdb.ada/watch_arg/watch.adb: New file.
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-- Copyright 2006 Free Software Foundation, Inc.
|
||||||
|
--
|
||||||
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
|
-- it under the terms of the GNU General Public License as published by
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
-- MA 02110-1301, USA
|
||||||
|
|
||||||
with Pck; use Pck;
|
with Pck; use Pck;
|
||||||
|
|
||||||
procedure P is
|
procedure P is
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-- Copyright 2006 Free Software Foundation, Inc.
|
||||||
|
--
|
||||||
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
|
-- it under the terms of the GNU General Public License as published by
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
-- MA 02110-1301, USA
|
||||||
|
|
||||||
package body Pck is
|
package body Pck is
|
||||||
|
|
||||||
function Create_Small return Data_Small is
|
function Create_Small return Data_Small is
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-- Copyright 2006 Free Software Foundation, Inc.
|
||||||
|
--
|
||||||
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
|
-- it under the terms of the GNU General Public License as published by
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
-- MA 02110-1301, USA
|
||||||
|
|
||||||
package Pck is
|
package Pck is
|
||||||
|
|
||||||
type Data_Small is array (1 .. 2) of Integer;
|
type Data_Small is array (1 .. 2) of Integer;
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-- Copyright 2005 Free Software Foundation, Inc.
|
||||||
|
--
|
||||||
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
|
-- it under the terms of the GNU General Public License as published by
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
-- MA 02110-1301, USA
|
||||||
|
|
||||||
procedure First is
|
procedure First is
|
||||||
begin
|
begin
|
||||||
null;
|
null;
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-- Copyright 2005 Free Software Foundation, Inc.
|
||||||
|
--
|
||||||
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
|
-- it under the terms of the GNU General Public License as published by
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
-- MA 02110-1301, USA
|
||||||
|
|
||||||
procedure Second is
|
procedure Second is
|
||||||
begin
|
begin
|
||||||
null;
|
null;
|
||||||
|
Reference in New Issue
Block a user