mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12:00
LLVM: Fix 0 vector constant observation
This commit is contained in:
parent
8d46840e09
commit
004d9b09b8
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ std::pair<bool, v128> cpu_translator::get_const_vector<v128>(llvm::Value* c, u32
|
||||||
{
|
{
|
||||||
if (llvm::isa<llvm::ConstantAggregateZero>(c))
|
if (llvm::isa<llvm::ConstantAggregateZero>(c))
|
||||||
{
|
{
|
||||||
return {};
|
return {true, result};
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string result;
|
std::string result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue