remove redundant return_ type parameter

This commit is contained in:
Joshua Warner
2014-05-03 19:46:15 -06:00
committed by Joshua Warner
parent 746c0fa0e8
commit 6fdd5d13ca
3 changed files with 8 additions and 10 deletions

View File

@ -90,7 +90,7 @@ class Compiler {
ir::Type resultType,
util::Slice<ir::Value*> arguments) = 0;
virtual void return_(ir::Type type, ir::Value* value) = 0;
virtual void return_(ir::Value* value) = 0;
virtual void return_() = 0;
virtual void initLocal(unsigned size, unsigned index, ir::Type type) = 0;