Added in r134777. Thanks for the suggestion!<div><br></div><div>- Lang.<br><br><div class="gmail_quote">On Fri, Jul 8, 2011 at 4:29 PM, Frits van Bommel <span dir="ltr"><<a href="mailto:fvbommel@gmail.com" target="_blank">fvbommel@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>On 8 July 2011 03:50, Lang Hames <<a href="mailto:lhames@gmail.com" target="_blank">lhames@gmail.com</a>> wrote:<br>


> +    switch (I->getIntrinsicID()) {<br>
> +      case Intrinsic::uadd_with_overflow:<br>
> +        e.opcode = Instruction::Add;<br>
> +        break;<br>
> +      case Intrinsic::usub_with_overflow:<br>
> +        e.opcode = Instruction::Sub;<br>
> +        break;<br>
> +      case Intrinsic::umul_with_overflow:<br>
> +        e.opcode = Instruction::Mul;<br>
> +        break;<br>
> +      default:<br>
> +        break;<br>
> +    }<br>
<br>
</div>Still no signed variants? They should be as easy as duplicating each<br>
case line and changing a single character on each of the three new<br>
lines ('s/::u/::s/'). (Plus some extra texts, of course)<br>
</blockquote></div><br></div>