remove redundant f2i & i2f aType parameter

This commit is contained in:
Joshua Warner
2014-05-03 20:00:10 -06:00
committed by Joshua Warner
parent c9313d5802
commit b853f1a594
3 changed files with 14 additions and 19 deletions

View File

@ -137,8 +137,8 @@ class Compiler {
virtual void nullaryOp(lir::Operation op) = 0;
virtual ir::Value* f2f(ir::Type resType, ir::Value* a) = 0;
virtual ir::Value* f2i(ir::Type aType, ir::Type resType, ir::Value* a) = 0;
virtual ir::Value* i2f(ir::Type aType, ir::Type resType, ir::Value* a) = 0;
virtual ir::Value* f2i(ir::Type resType, ir::Value* a) = 0;
virtual ir::Value* i2f(ir::Type resType, ir::Value* a) = 0;
virtual void compile(uintptr_t stackOverflowHandler,
unsigned stackLimitOffset) = 0;