mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Remove deprecated _bit accessor from v128
Complicated (a lot of code), confusing (ambiguous)
This commit is contained in:
parent
6b96807112
commit
35322b5d14
4 changed files with 43 additions and 133 deletions
|
|
@ -112,10 +112,8 @@ std::pair<bool, v128> cpu_translator::get_const_vector<v128>(llvm::Value* c, u32
|
|||
{
|
||||
auto cv = ci->getValue();
|
||||
|
||||
for (int i = 0; i < 128; i++)
|
||||
{
|
||||
result._bit[i] = cv[i];
|
||||
}
|
||||
result._u64[0] = cv.extractBitsAsZExtValue(64, 0);
|
||||
result._u64[1] = cv.extractBitsAsZExtValue(64, 64);
|
||||
|
||||
return {true, result};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue