mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-25 21:16:19 +00:00
Fix Bug: test/Regression/Other/2002-04-07-InfConstant.ll
llvm-svn: 2142
This commit is contained in:
parent
1c83a4a20c
commit
96135c924f
@ -165,9 +165,18 @@ std::string ConstantUInt::getStrValue() const {
|
||||
//
|
||||
std::string ConstantFP::getStrValue() const {
|
||||
std::string StrVal = ftostr(Val);
|
||||
|
||||
// Check to make sure that the stringized number is not some string like "Inf"
|
||||
// or NaN, that atof will accept, but the lexer will not. Check that the
|
||||
// string matches the "[-+]?[0-9]" regex.
|
||||
//
|
||||
if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
|
||||
((StrVal[0] == '-' || StrVal[0] == '+') &&
|
||||
(StrVal[0] >= '0' && StrVal[0] <= '9'))) {
|
||||
double TestVal = atof(StrVal.c_str()); // Reparse stringized version!
|
||||
if (TestVal == Val)
|
||||
return StrVal;
|
||||
}
|
||||
|
||||
// Otherwise we could not reparse it to exactly the same value, so we must
|
||||
// output the string in hexadecimal format!
|
||||
|
Loading…
Reference in New Issue
Block a user