Commit 5440a1b0 by Chung-Lin Tang Committed by Chung-Lin Tang

builtins.c (expand_builtin_set_thread_pointer): Use create_input_operand()…

builtins.c (expand_builtin_set_thread_pointer): Use create_input_operand() instead of create_fixed_operand().

2012-10-13  Chung-Lin Tang  <cltang@codesourcery.com>

	* builtins.c (expand_builtin_set_thread_pointer): Use
	create_input_operand() instead of create_fixed_operand().

From-SVN: r192422
parent fdc54592
2012-10-13 Chung-Lin Tang <cltang@codesourcery.com>
* builtins.c (expand_builtin_set_thread_pointer): Use
create_input_operand() instead of create_fixed_operand().
2012-10-13 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/alpha.md (FMODE): New mode iterator.
......@@ -5776,7 +5776,7 @@ expand_builtin_set_thread_pointer (tree exp)
struct expand_operand op;
rtx val = expand_expr (CALL_EXPR_ARG (exp, 0), NULL_RTX,
Pmode, EXPAND_NORMAL);
create_fixed_operand (&op, val);
create_input_operand (&op, val, Pmode);
expand_insn (icode, 1, &op);
return;
}
......
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