remove redundant f2f aType parameter

This commit is contained in:
Joshua Warner
2014-05-03 19:56:21 -06:00
committed by Joshua Warner
parent 963b371e04
commit c843a97e23
3 changed files with 6 additions and 7 deletions

View File

@ -136,7 +136,7 @@ class Compiler {
ir::Value* a) = 0;
virtual void nullaryOp(lir::Operation op) = 0;
virtual ir::Value* f2f(ir::Type aType, ir::Type resType, ir::Value* a) = 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;