1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

LLVM: Fix 0 vector constant observation

This commit is contained in:
Elad Ashkenazi 2022-06-08 16:55:09 +03:00 committed by Ivan
parent 8d46840e09
commit 004d9b09b8

View File

@ -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;