diff options
author | obrien <obrien@FreeBSD.org> | 2000-06-10 20:42:27 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-06-10 20:42:27 +0000 |
commit | 71af5885a4fc176b1136018dd06e63217c635d26 (patch) | |
tree | d16d8914c2ccfc5a4de6743a181d05d9de62a8fa /sys | |
parent | 44e8590644dcaa47152a0d8bb3574cd235ea8a2b (diff) | |
download | FreeBSD-src-71af5885a4fc176b1136018dd06e63217c635d26.zip FreeBSD-src-71af5885a4fc176b1136018dd06e63217c635d26.tar.gz |
It is not necessary to wrap usage of $f28 with ".set noat/at" pairs.
A very bogus gas warning gave people the impression it was. noat/at had
no useful affect here.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/alpha/alpha/locore.s | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/alpha/alpha/locore.s b/sys/alpha/alpha/locore.s index a7fd573..221c673 100644 --- a/sys/alpha/alpha/locore.s +++ b/sys/alpha/alpha/locore.s @@ -213,9 +213,7 @@ LEAF(savefpstate, 1) stt $f25, (25 * 8)(t1) stt $f26, (26 * 8)(t1) stt $f27, (27 * 8)(t1) - .set noat stt $f28, (28 * 8)(t1) - .set at stt $f29, (29 * 8)(t1) stt $f30, (30 * 8)(t1) @@ -277,9 +275,7 @@ LEAF(restorefpstate, 1) ldt $f25, (25 * 8)(t1) ldt $f26, (26 * 8)(t1) ldt $f27, (27 * 8)(t1) - .set noat ldt $f28, (28 * 8)(t1) - .set at ldt $f29, (29 * 8)(t1) ldt $f30, (30 * 8)(t1) |