]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/lib/doboth
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gas / testsuite / lib / doboth
CommitLineData
acf11ed1
KR
1#!/bin/sh
2# $Id$
3
4x=$1 ; shift
5y=$1 ; shift
6
7rm tmp.0 > /dev/null 2>&1
8ln -s $x tmp.0
9$* tmp.0 > tmp.1
10
11rm tmp.0
12ln -s $y tmp.0
13$* tmp.0 > tmp.2
14
15rm tmp.0
16
17diff -c tmp.1 tmp.2
18exit
19
20#eof