1 # Test ALIGNOF in a linker script.
2 # Copyright
2007 Free Software Foundation
, Inc.
3 # Contributed by Nathan Sidwell
<nathan@codesourcery.com
>
5 # This file is part of the GNU Binutils.
7 # This
program is free software
; you can redistribute it and
/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation
; either version
3 of the License
, or
10 #
(at your option
) any later version.
12 # This
program is distributed in the hope that it will be useful
,
13 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License
for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this
program; if not
, write to the Free Software
19 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
,
22 # Only ELF and PE
-COFF targets record section alignment.
24 if {![is_elf_format
] && ![is_pecoff_format
]} {
28 set testname
"ALIGNOF"
30 if ![ld_assemble $as $srcdir
/$subdir
/alignof.s tmpdir
/alignof.o
] {
35 if ![ld_simple_link $
ld tmpdir
/alignof
"-T $srcdir/$subdir/alignof.t tmpdir/alignof.o"] {
40 if ![ld_nm $nm
"" tmpdir/alignof] {
45 if {![info exists nm_output
(alignof_text
)] \
46 ||
![info exists nm_output
(alignof_data
)]} {
47 send_log
"bad output from nm\n"
48 verbose
"bad output from nm"
53 if {$nm_output
(alignof_text
) != 64} {
54 send_log
"alignof_text != 64\n"
55 verbose
"alignof_text != 64"
60 if {$nm_output
(alignof_data
) != 16} {
61 send_log
"alignof_data != 16\n"
62 verbose
"alignof_data != 16"