* bsd-uthread.c (bsd_uthread_wait): Don't try to fetch thread IDs
[deliverable/binutils-gdb.git] / ld / testsuite / ld-fastcall / fastcall.exp
CommitLineData
c9e38879 1# Test that the linker can handle fastcall symbols correctly.
99ad8390 2# Copyright 2002, 2006 Free Software Foundation, Inc.
c9e38879
NC
3#
4# This file is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
75be928b 16# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
c9e38879
NC
17
18set testname "ld (fastcall symbols)"
19
42037fe5 20if {![istarget "i*86-*-*"] && ![istarget "x86_64-*-mingw*"] } {
c9e38879
NC
21 return
22}
23
19dce677 24if { !([istarget "i*86-*-*pe*"] && ![istarget "i*86-*-opensd*"]) \
c9e38879 25 && ![istarget "i*86-*-cygwin*"] \
42037fe5 26 && ![istarget "x86_64-*-mingw*"] \
99ad8390 27 && ![istarget "i*86-*-mingw*"] } {
3d198be3 28 return
c9e38879
NC
29}
30
31set ldflags ""
32
33if ![ld_assemble $as $srcdir/$subdir/export.s tmpdir/export.o] {
34 verbose "Unable to assemble test file!" 1
35 unresolved $testname
36 return
37}
38
39if ![ld_assemble $as $srcdir/$subdir/import.s tmpdir/import.o] {
40 verbose "Unable to assemble test file!" 1
41 unresolved $testname
42 return
43}
44
45if ![ld_simple_link $ld tmpdir/extern.x "$ldflags tmpdir/export.o tmpdir/import.o"] {
46 fail $testname
47} else {
48 pass $testname
49}
This page took 0.256518 seconds and 4 git commands to generate.