mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-16 21:03:14 +01:00
Fix ARM default floating-point ABI.
It shouldn't really matter, as we probably aren't going to support anything but AAPCS anytime soon.
This commit is contained in:
@@ -185,8 +185,9 @@ static FloatABI::Type getARMFloatABI(const llvm::Triple &triple,
|
||||
return FloatABI::Soft;
|
||||
}
|
||||
default:
|
||||
// Assume "soft", but warn the user we are guessing.
|
||||
return FloatABI::SoftFP;
|
||||
// Assume "soft".
|
||||
// TODO: Warn the user we are guessing.
|
||||
return FloatABI::Soft;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user