mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12:00
fixes to get llvm to compile (excepti for utils.cpp, that'll get fixed
later) Eradicate the Array almost everywhere, some usages like Stack still remains
This commit is contained in:
parent
d65968b41d
commit
25c3aa8e19
92 changed files with 931 additions and 1305 deletions
|
@ -1455,9 +1455,9 @@ void CompilePPUProgram::Compile()
|
|||
u32 code;
|
||||
|
||||
{
|
||||
Array<u32> args;
|
||||
args.SetCount(m_args.size());
|
||||
for(uint i=0; i<args.GetCount(); ++i)
|
||||
std::vector<u32> args;
|
||||
args.resize(m_args.size());
|
||||
for(uint i=0; i<args.size(); ++i)
|
||||
{
|
||||
args[i] = m_args[i].value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue