Adds support for fastcall symbols as used on Microsoft Windows platforms
[deliverable/binutils-gdb.git] / ld / testsuite / ld-fastcall / fastcall.exp
CommitLineData
c9e38879
NC
1# Test that the linker can handle fastcall symbols correctly.
2# Copyright 2002 Free Software Foundation, Inc.
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
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18set testname "ld (fastcall symbols)"
19
20if {![istarget "i*86-*-*"]} {
21 return
22}
23
24if {![istarget "i*86-*-*pe*"] \
25 && ![istarget "i*86-*-cygwin*"] \
26 && ![istarget "i*86-*-mingw32*"] } {
27 set target_xfail "yes"
28} else {
29 set target_xfail "no"
30}
31
32set ldflags ""
33
34if ![ld_assemble $as $srcdir/$subdir/export.s tmpdir/export.o] {
35 verbose "Unable to assemble test file!" 1
36 unresolved $testname
37 return
38}
39
40if ![ld_assemble $as $srcdir/$subdir/import.s tmpdir/import.o] {
41 verbose "Unable to assemble test file!" 1
42 unresolved $testname
43 return
44}
45
46if ![ld_simple_link $ld tmpdir/extern.x "$ldflags tmpdir/export.o tmpdir/import.o"] {
47 fail $testname
48} else {
49 pass $testname
50}
This page took 0.038424 seconds and 4 git commands to generate.