mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
Check we aren't trying to convert PPC long double.
This fixes the testsuite failure on ppcf128-4.ll. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49994 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5913e6c5db
commit
9dd2ce46c5
@ -1500,7 +1500,10 @@ public:
|
|||||||
/// We leave the version with the double argument here because it's just so
|
/// We leave the version with the double argument here because it's just so
|
||||||
/// convenient to write "2.0" and the like. Without this function we'd
|
/// convenient to write "2.0" and the like. Without this function we'd
|
||||||
/// have to duplicate its logic everywhere it's called.
|
/// have to duplicate its logic everywhere it's called.
|
||||||
bool isExactlyValue(double V) const {
|
bool isExactlyValue(double V) const {
|
||||||
|
// convert is not supported on this type
|
||||||
|
if (&Value.getSemantics() == &APFloat::PPCDoubleDouble)
|
||||||
|
return false;
|
||||||
APFloat Tmp(V);
|
APFloat Tmp(V);
|
||||||
Tmp.convert(Value.getSemantics(), APFloat::rmNearestTiesToEven);
|
Tmp.convert(Value.getSemantics(), APFloat::rmNearestTiesToEven);
|
||||||
return isExactlyValue(Tmp);
|
return isExactlyValue(Tmp);
|
||||||
|
@ -74,12 +74,9 @@ bool ConstantFPSDNode::isValueValidForType(MVT::ValueType VT,
|
|||||||
const APFloat& Val) {
|
const APFloat& Val) {
|
||||||
assert(MVT::isFloatingPoint(VT) && "Can only convert between FP types");
|
assert(MVT::isFloatingPoint(VT) && "Can only convert between FP types");
|
||||||
|
|
||||||
// Anything can be extended to ppc long double.
|
// PPC long double cannot be converted to any other type.
|
||||||
if (VT == MVT::ppcf128)
|
if (VT == MVT::ppcf128 ||
|
||||||
return true;
|
&Val.getSemantics() == &APFloat::PPCDoubleDouble)
|
||||||
|
|
||||||
// PPC long double cannot be shrunk to anything though.
|
|
||||||
if (&Val.getSemantics() == &APFloat::PPCDoubleDouble)
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// convert modifies in place, so make a copy.
|
// convert modifies in place, so make a copy.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user