remove dead code from MyCompiler::call

This commit is contained in:
Joel Dice 2009-03-04 17:52:55 -07:00
parent ed9e54bca1
commit 8cc1f6def8

View File

@ -4936,14 +4936,8 @@ class MyCompiler: public Compiler {
va_end(a);
Stack* argumentStack = c.stack;
Stack* bottomArgument = 0;
for (int i = index - 1; i >= 0; --i) {
argumentStack = ::stack(&c, arguments[i], argumentStack);
if (i == index - 1) {
bottomArgument = argumentStack;
}
}
Value* result = value(&c);