Commit 09501938 by David Edelsohn Committed by David Edelsohn

* config/rs6000/rs6000.c (rs6000_hash_constant): Skip '0' fields.

From-SVN: r65508
parent 2bc67e06
2003-04-12 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (rs6000_hash_constant): Skip '0' fields.
2003-04-12 Alexandre Oliva <aoliva@redhat.com>
* mklibgcc.in (libgcc-stage-start): For every multilib directory
......
......@@ -11888,6 +11888,8 @@ rs6000_hash_constant (k)
>> CHAR_BIT * i);
}
break;
case '0':
break;
default:
abort ();
}
......
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