diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-01-03 04:12:24 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-01-03 04:12:24 +0000 |
commit | a97fced3146726dc86196b91587610392952f234 (patch) | |
tree | 7fb6c1c10ec73091d8334431c7fa6d9c377eb893 /gdb/testsuite/gdb.ada/fun_addr | |
parent | ceef53c1cbc19f2c4de6e49a5b6f55f17e412fb7 (diff) | |
download | binutils-a97fced3146726dc86196b91587610392952f234.zip binutils-a97fced3146726dc86196b91587610392952f234.tar.gz binutils-a97fced3146726dc86196b91587610392952f234.tar.bz2 |
* gdb.ada/fun_addr/foo.adb: New file.
* gdb.ada/fun_addr.exp: New testcase.
Diffstat (limited to 'gdb/testsuite/gdb.ada/fun_addr')
-rw-r--r-- | gdb/testsuite/gdb.ada/fun_addr/foo.adb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.ada/fun_addr/foo.adb b/gdb/testsuite/gdb.ada/fun_addr/foo.adb new file mode 100644 index 0000000..03e266d --- /dev/null +++ b/gdb/testsuite/gdb.ada/fun_addr/foo.adb @@ -0,0 +1,19 @@ +-- Copyright 2008 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 3 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, see <http://www.gnu.org/licenses/>. + +procedure Foo is +begin + null; +end Foo; |