2017-01-01 07:50:51 +01:00
|
|
|
# Copyright 2009-2017 Free Software Foundation, Inc.
|
2009-08-28 12:49:06 +02:00
|
|
|
|
|
|
|
# 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/>.
|
2011-01-19 21:26:10 +01:00
|
|
|
load_lib dwarf.exp
|
2009-08-28 12:49:06 +02:00
|
|
|
|
|
|
|
# Test DW_TAG_inheritance using constant DW_AT_data_member_location
|
|
|
|
# introduced by GCC PR debug/40659.
|
|
|
|
|
|
|
|
# This test can only be run on targets which support DWARF-2 and use gas.
|
2011-01-19 21:26:10 +01:00
|
|
|
if {![dwarf2_support]} {
|
2009-08-28 12:49:06 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2012-06-27 19:00:09 +02:00
|
|
|
standard_testfile .S
|
2009-08-28 12:49:06 +02:00
|
|
|
|
2012-06-27 19:00:09 +02:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" $binfile \
|
|
|
|
object {nodebug}] != "" } {
|
2009-08-28 12:49:06 +02:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2012-06-27 19:00:09 +02:00
|
|
|
clean_restart $testfile
|
2009-08-28 12:49:06 +02:00
|
|
|
|
|
|
|
gdb_test "ptype inherited" "type = class inherited .*"
|