Skip to content
Snippets Groups Projects
Commit 2f2fa7b7 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Add get_high/get_low on opcounted Vec8d

parent dd1c50b5
No related branches found
No related tags found
No related merge requests found
......@@ -699,6 +699,24 @@ struct Vec8d
BARRIER;
}
Vec4d get_low() const
{
BARRIER;
Vec4d ret;
ret.load(&d);
BARRIER;
return ret;
}
Vec4d get_low() const
{
BARRIER;
Vec4d ret;
ret.load(&d + 4);
BARRIER;
return ret;
}
Vec8d& load(const F* p)
{
BARRIER;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment