added floating point support, split plan method

This commit is contained in:
Josh warner 2009-08-06 10:17:48 -06:00
parent 53c0656ee7
commit 61bc729974

View File

@ -21,7 +21,7 @@ class Compiler {
public:
class Client {
public:
virtual intptr_t getThunk(UnaryOperation op, unsigned size, unsigned resultSize) = 0;
virtual intptr_t getThunk(UnaryOperation op, unsigned size) = 0;
virtual intptr_t getThunk(BinaryOperation op, unsigned size, unsigned resultSize) = 0;
virtual intptr_t getThunk(TernaryOperation op, unsigned size, unsigned resultSize) = 0;
};