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

closes #804
master
Andrew Kelley 2018-03-06 16:57:41 -05:00
parent 5d5820029d
commit cc0f660ad2
1 changed files with 1 additions and 1 deletions

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;
}
}