瀏覽代碼

* instructions being already conditional can't be marked as conditional again

git-svn-id: trunk@5394 -
florian 18 年之前
父節點
當前提交
1e1f711663
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      compiler/arm/aoptcpu.pas

+ 1 - 1
compiler/arm/aoptcpu.pas

@@ -43,7 +43,7 @@ Implementation
 
   function CanBeCond(p : tai) : boolean;
     begin
-      result:=true;
+      result:=(p.typ=ait_instruction) and (taicpu(p).condition=C_None);
     end;