Commit ed9a9db1 by Richard Kenner

(expand_computed_goto): Convert from ptr_mode to Pmode.

From-SVN: r9331
parent 9c5f2956
......@@ -610,6 +610,10 @@ expand_computed_goto (exp)
{
rtx x = expand_expr (exp, NULL_RTX, VOIDmode, 0);
emit_queue ();
#ifdef POINTERS_EXTEND_UNSIGNED
x = convert_memory_address (Pmode, x);
#endif
emit_indirect_jump (x);
}
}
......
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