Hello!

> There's const0_rtx, const1_rtx and const2_rtx. How can I create a
> const rtx other than 0, 1, 2? I want to use it in md file, like

> operand[1] = 111.

> I know I must use const rtx here. How can I do it? A simple question,
> but just no idea where to find the answer.

operand[1] = GEN_INT (111);

Uros.

Reply via email to