mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00: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))
|
||||
{
|
||||
return {};
|
||||
return {true, result};
|
||||
}
|
||||
|
||||
std::string result;
|
||||
|
|
Loading…
Add table
Reference in a new issue