remove redundant Compiler::store srcType parameter

This commit is contained in:
Joshua Warner
2014-05-03 20:16:19 -06:00
committed by Joshua Warner
parent f6bc51647e
commit 33d946d249
3 changed files with 17 additions and 40 deletions

View File

@ -112,7 +112,7 @@ class Compiler {
virtual ir::Value* truncate(ir::Type type, ir::Value* src) = 0;
virtual void store(ir::Type srcType, ir::Value* src, ir::Value* dst) = 0;
virtual void store(ir::Value* src, ir::Value* dst) = 0;
virtual ir::Value* load(ir::SignExtendMode signExtend,
ir::Value* src,
ir::Type dstType) = 0;