Add some missing returns.

This commit is contained in:
Frits van Bommel
2009-05-30 23:48:22 +02:00
parent 2e6e578ea1
commit c8b10643f9
2 changed files with 2 additions and 1 deletions

View File

@@ -132,7 +132,7 @@ struct X86_struct_to_register : ABIRewrite
assert(dv->isLVal());
LLValue* mem = dv->getLVal();
const LLType* t = LLIntegerType::get(dty->size()*8);
DtoLoad(DtoBitCast(mem, getPtrToType(t)));
return DtoLoad(DtoBitCast(mem, getPtrToType(t)));
}
const LLType* type(Type* t, const LLType*)
{