diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-22 06:25:50 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1995-01-22 06:25:50 +0000 |
commit | 89ac6f79fb43c4eb9be856864f5229ca65df2a43 (patch) | |
tree | 1ce7324b99d92297ea44abc58bf0559e2cb2d7cc /gdb/testsuite/gdb.stabs | |
parent | be7571b69adfe15acaaa85906a1c3a78c13b67e7 (diff) | |
download | gdb-89ac6f79fb43c4eb9be856864f5229ca65df2a43.zip gdb-89ac6f79fb43c4eb9be856864f5229ca65df2a43.tar.gz gdb-89ac6f79fb43c4eb9be856864f5229ca65df2a43.tar.bz2 |
The following fixes a FAIL caused by the fact that the alpha stabs
configuration didn't use the ".if alpha" code in weird.def.
* gdb.stabs/weird.def (v_comb): Use type attribute to specify 32
bit pointer, so the 32 bit version works even on the alpha.
* gdb.stabs/{alpha.mt,ecoff.mt,aout.sed,hppa.sed,xcoff.sed,weird.def}:
Remove the stuff which allowed us to have separate versions for
alpha and everything else.
Diffstat (limited to 'gdb/testsuite/gdb.stabs')
-rw-r--r-- | gdb/testsuite/gdb.stabs/alpha.mt | 3 | ||||
-rw-r--r-- | gdb/testsuite/gdb.stabs/ecoff.mt | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.stabs/alpha.mt b/gdb/testsuite/gdb.stabs/alpha.mt index 4ebce02..afa1289 100644 --- a/gdb/testsuite/gdb.stabs/alpha.mt +++ b/gdb/testsuite/gdb.stabs/alpha.mt @@ -2,6 +2,5 @@ # uses gas, you should configure gdb --with-gnu-as. # weird.o: $(srcdir)/weird.def $(srcdir)/ecoff.sed - sed -e '/.if notalpha/,/.endif notalpha/d' <$(srcdir)/weird.def | \ - sed -f $(srcdir)/ecoff.sed >weird.s + sed -f $(srcdir)/ecoff.sed <$(srcdir)/weird.def >weird.s $(CC) -c weird.s diff --git a/gdb/testsuite/gdb.stabs/ecoff.mt b/gdb/testsuite/gdb.stabs/ecoff.mt index 38f85cb..57e7f18 100644 --- a/gdb/testsuite/gdb.stabs/ecoff.mt +++ b/gdb/testsuite/gdb.stabs/ecoff.mt @@ -2,7 +2,6 @@ # uses gas, you should configure gdb --with-gnu-as. # weird.o: $(srcdir)/weird.def $(srcdir)/ecoff.sed - sed -e '/.if alpha/,/.endif alpha/d' <$(srcdir)/weird.def | \ - sed -e 's/.long/.word/' | \ + sed <$(srcdir)/weird.def -e 's/.long/.word/' | \ sed -f $(srcdir)/ecoff.sed >weird.s $(CC) -c weird.s |