unless hf is specified in target environ, assume soft floating point

closes #804
This commit is contained in:
Andrew Kelley 2018-03-06 16:57:41 -05:00
parent 5d5820029d
commit cc0f660ad2

View File

@ -761,7 +761,7 @@ static FloatAbi get_float_abi(ZigTarget *target) {
{
return FloatAbiHard;
} else {
zig_panic("TODO: user needs to input if they want hard or soft floating point");
return FloatAbiSoft;
}
}