diff options
Diffstat (limited to 'src/passes/FuncCastEmulation.cpp')
-rw-r--r-- | src/passes/FuncCastEmulation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/FuncCastEmulation.cpp b/src/passes/FuncCastEmulation.cpp index 8ae0db839..9e455b0c8 100644 --- a/src/passes/FuncCastEmulation.cpp +++ b/src/passes/FuncCastEmulation.cpp @@ -44,7 +44,7 @@ static const int NUM_PARAMS = 16; // Converts a value to the ABI type of i64. static Expression* toABI(Expression* value, Module* module) { Builder builder(*module); - switch (value->type.getSingle()) { + switch (value->type.getBasic()) { case Type::i32: { value = builder.makeUnary(ExtendUInt32, value); break; @@ -88,7 +88,7 @@ static Expression* toABI(Expression* value, Module* module) { // Converts a value from the ABI type of i64 to the expected type static Expression* fromABI(Expression* value, Type type, Module* module) { Builder builder(*module); - switch (type.getSingle()) { + switch (type.getBasic()) { case Type::i32: { value = builder.makeUnary(WrapInt64, value); break; |