diff options
author | dfr <dfr@FreeBSD.org> | 2002-05-26 16:03:13 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2002-05-26 16:03:13 +0000 |
commit | e8d149b2f764dc40d5530a9deac9d39ccfcb1d30 (patch) | |
tree | 747d067ea43b73a9967eed2f57e33a79f442340d /sys/alpha | |
parent | 82d31a36d4b510fecf30b24f498fefac37cd4240 (diff) | |
download | FreeBSD-src-e8d149b2f764dc40d5530a9deac9d39ccfcb1d30.zip FreeBSD-src-e8d149b2f764dc40d5530a9deac9d39ccfcb1d30.tar.gz |
Add declarations of suword32 and suword64. Add implementations of one or
the other (or both) to all the platforms. Similar for fuword32 and
fuword64.
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/alpha/support.s | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/alpha/alpha/support.s b/sys/alpha/alpha/support.s index 497412d..47058e6 100644 --- a/sys/alpha/alpha/support.s +++ b/sys/alpha/alpha/support.s @@ -65,6 +65,7 @@ */ LEAF(suword, 1) + XLEAF(suword64, 1) LDGP(pv) ldiq t0, VM_MAXUSER_ADDRESS /* verify address validity */ @@ -110,6 +111,7 @@ END(subyte) LEAF(fuword, 1) + XLEAF(fuword64, 1) LDGP(pv) ldiq t0, VM_MAXUSER_ADDRESS /* verify address validity */ |