mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-27 14:07:32 +00:00
Previous checkin broke printf(%a) support for fp constants-- re-fix it.
llvm-svn: 16051
This commit is contained in:
parent
8b65b55ec1
commit
69fc098326
@ -590,7 +590,15 @@ void CWriter::printConstant(Constant *CPV) {
|
||||
Out << "LLVM_INF" << (FPC->getType() == Type::FloatTy ? "F" : "")
|
||||
<< " /*inf*/ ";
|
||||
} else {
|
||||
std::string Num = ftostr(FPC->getValue());
|
||||
std::string Num;
|
||||
#if HAVE_PRINTF_A
|
||||
// Print out the constant as a floating point number.
|
||||
char Buffer[100];
|
||||
sprintf(Buffer, "%a", FPC->getValue());
|
||||
Num = Buffer;
|
||||
#else
|
||||
Num = ftostr(FPC->getValue());
|
||||
#endif
|
||||
Out << Num;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user