<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;" dir="ltr">
<p>Hi, <br>
</p>
<p><br>
</p>
<p>I'm currently writing a backend for a specific platform. On the target platform, "add/sub" always write a flag result. I used SDNode pattern "add/sub" for these  two instructions, however this leading to a wrongly code as follows,</p>
<p><br>
cmp</p>
<p>...</p>
<p>add ...</p>
<p>...</p>
<p>beq</p>
<p><br>
</p>
<p>"add" changes the flag. Desired code is:</p>
<p><br>
</p>
<p>add...<br>
</p>
<p>cmp</p>
<p>...         ;No add/sub</p>
<p>beq</p>
<p><br>
</p>
<p>Then I tried to use SDNode pattern "addc/subc" instead, but it doesn't matter and cause some other errors. What should I do to generate code that no "add/sub" between "cmp" and "branch"?<br>
</p>
</div>
</body>
</html>