Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
c7ea7c15
Commit
c7ea7c15
authored
Jan 22, 2009
by
Ben.Lippmeier@anu.edu.au
Browse files
SPARC NCG: Also do misaligned reads (this time for sure!)
parent
581a6a7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
rts/RtsAPI.c
View file @
c7ea7c15
...
...
@@ -301,12 +301,14 @@ rts_getInt32 (HaskellObj p)
HsInt64
rts_getInt64
(
HaskellObj
p
)
{
HsInt
64
*
tmp
;
HsInt
32
*
tmp
;
// See comment above:
// ASSERT(p->header.info == I64zh_con_info ||
// p->header.info == I64zh_static_info);
tmp
=
(
HsInt64
*
)
&
(
UNTAG_CLOSURE
(
p
)
->
payload
[
0
]);
return
*
tmp
;
tmp
=
(
HsInt32
*
)
&
(
UNTAG_CLOSURE
(
p
)
->
payload
[
0
]);
HsInt64
i
=
(
HsInt64
)(
tmp
[
0
]
<<
32
)
|
(
HsInt64
)
tmp
[
1
];
return
i
;
}
#else
...
...
@@ -314,14 +316,12 @@ rts_getInt64 (HaskellObj p)
HsInt64
rts_getInt64
(
HaskellObj
p
)
{
HsInt
32
*
tmp
;
HsInt
64
*
tmp
;
// See comment above:
// ASSERT(p->header.info == I64zh_con_info ||
// p->header.info == I64zh_static_info);
tmp
=
(
HsInt32
*
)
&
(
UNTAG_CLOSURE
(
p
)
->
payload
[
0
]);
HsInt64
i
=
(
HsInt64
)(
tmp
[
0
]
<<
32
)
|
(
HsInt64
)
tmp
[
1
];
return
i
tmp
=
(
HsInt64
*
)
&
(
UNTAG_CLOSURE
(
p
)
->
payload
[
0
]);
return
*
tmp
;
}
#endif
/* sparc_HOST_ARCH */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment