mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 13:21:30 +00:00
Tweak how ConstantFP80Ty constants are output
so that gcc doesn't warn about them. llvm-svn: 51529
This commit is contained in:
parent
2704d9e1bc
commit
69bebf19a7
@ -1823,7 +1823,7 @@ void CWriter::printFloatingPointConstants(Function &F) {
|
||||
Out << "static const ConstantFP80Ty FPConstant" << FPCounter++
|
||||
<< " = { 0x" << std::hex
|
||||
<< ((uint16_t)p[1] | (p[0] & 0xffffffffffffLL)<<16)
|
||||
<< ", 0x" << (uint16_t)(p[0] >> 48) << ",0,0,0"
|
||||
<< "ULL, 0x" << (uint16_t)(p[0] >> 48) << ",{0,0,0}"
|
||||
<< "}; /* Long double constant */\n" << std::dec;
|
||||
} else if (FPC->getType() == Type::PPC_FP128Ty) {
|
||||
APInt api = FPC->getValueAPF().convertToAPInt();
|
||||
|
Loading…
Reference in New Issue
Block a user