remove redundant CallEvent::argumentCount parameter

This commit is contained in:
Joshua Warner
2014-05-01 19:07:45 -06:00
committed by Joshua Warner
parent f9cbca8f7d
commit 1318b9ca2a
3 changed files with 8 additions and 20 deletions

View File

@ -2499,7 +2499,6 @@ class MyCompiler: public Compiler {
result,
resultType.size(),
argumentStack,
index,
util::Slice<ir::Value*>(RUNTIME_ARRAY_BODY(arguments), index));
return result;
@ -2520,7 +2519,6 @@ class MyCompiler: public Compiler {
result,
resultType.size(),
c.stack,
0,
arguments);
return result;
}