2013-05-13 Tom Tromey <tromey@redhat.com>
+ * gdb.dwarf2/implptrconst.exp: Create a CU with 4 byte address
+ size and change type sizes to 4 bytes.
+
+2013-05-13 Tom Tromey <tromey@redhat.com>
+
* gdb.base/exprs.exp (test_expr): Add regression test.
* gdb.base/exprs.c (null_t_struct): New global.
# Make some DWARF for the test.
set asm_file [standard_output_file $srcfile2]
Dwarf::assemble $asm_file {
- cu 0 2 8 {
+ # Creating a CU with 4-byte addresses lets this test link on both
+ # 32- and 64-bit machines.
+ cu 0 2 4 {
compile_unit {} {
declare_labels byte_label size_type_label array_label
declare_labels var_label ptr_label
size_type_label: base_type {
{name sizetype}
{encoding @DW_ATE_unsigned}
- {byte_size 8 DW_FORM_sdata}
+ {byte_size 4 DW_FORM_sdata}
}
array_label: array_type {
}
ptr_label: pointer_type {
- {byte_size 8 DW_FORM_sdata}
+ {byte_size 4 DW_FORM_sdata}
{type :$byte_label}
}