forked from OSchip/llvm-project
Get rid of bogus "control may reach end of non-void function ‘...’ being
inlined" message. llvm-svn: 60165
This commit is contained in:
parent
d6204bed3d
commit
c6075401c2
|
@ -2290,8 +2290,8 @@ APFloat::convertFromString(const char *p, roundingMode rounding_mode)
|
|||
|
||||
if(p[0] == '0' && (p[1] == 'x' || p[1] == 'X'))
|
||||
return convertFromHexadecimalString(p + 2, rounding_mode);
|
||||
else
|
||||
return convertFromDecimalString(p, rounding_mode);
|
||||
|
||||
return convertFromDecimalString(p, rounding_mode);
|
||||
}
|
||||
|
||||
/* Write out a hexadecimal representation of the floating point value
|
||||
|
|
Loading…
Reference in New Issue