Commit 28ae04f1 by Ian Lance Taylor

Don't print CONST_DOUBLE as floating point if not MODE_FLOAT

From-SVN: r8668
parent c211b991
......@@ -3648,7 +3648,8 @@ print_operand (file, op, letter)
else if (code == MEM)
output_address (XEXP (op, 0));
else if (code == CONST_DOUBLE)
else if (code == CONST_DOUBLE
&& GET_MODE_CLASS (GET_MODE (op)) == MODE_FLOAT)
{
REAL_VALUE_TYPE d;
char s[30];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment