Commit 42f769c1 by Richard Stallman

(force_fit_type): Abort if T not INTEGER_CST.

From-SVN: r3387
parent 4d7d0403
...@@ -124,6 +124,9 @@ force_fit_type (t) ...@@ -124,6 +124,9 @@ force_fit_type (t)
{ {
register int prec = TYPE_PRECISION (TREE_TYPE (t)); register int prec = TYPE_PRECISION (TREE_TYPE (t));
if (TREE_CODE (t) != INTEGER_CST)
abort ();
if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE) if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE)
prec = POINTER_SIZE; prec = POINTER_SIZE;
......
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