b811d2c292
gdb/ChangeLog: Update copyright year range in all GDB files.
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
# Copyright 2019-2020 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/>.
|
|
|
|
standard_testfile .c
|
|
|
|
if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] } {
|
|
return -1
|
|
}
|
|
|
|
set bp_location [gdb_get_line_number "START"]
|
|
if ![runto "endianity.c:$bp_location" ] then {
|
|
fail "couldn't run to start"
|
|
return -1
|
|
}
|
|
|
|
gdb_test "print o" "= {v = 3, w = 2, x = 7, f = 23.5, cplx = 1.25 \\+ 7.25 \\* I, d = 75}" \
|
|
"print o before assignment"
|
|
|
|
gdb_test "print o.v = 4" "= 4"
|
|
gdb_test "print o.w = 3" "= 3"
|
|
gdb_test "print o.x = 2" "= 2"
|
|
gdb_test "print o.f = 1.5" "= 1.5"
|
|
gdb_test "print o.d = -23.125" "= -23.125"
|
|
|
|
# scalar_storage_order requires gcc >= 6
|
|
if { ([test_compiler_info {gcc-[0-5]-*}] || ![test_compiler_info gcc*]) } {
|
|
setup_xfail "*-*-*"
|
|
}
|
|
gdb_test "x/x &o.v" "0x04000000"
|
|
gdb_test "x/xh &o.w" "0x0300"
|
|
|
|
gdb_test "print o" "= {v = 4, w = 3, x = 2, f = 1.5, cplx = 1.25 \\+ 7.25 \\* I, d = -23.125}" \
|
|
"print o after assignment"
|