소스 검색

* Added missing override directive in trgcpu.add_constraints method for x86_64 CPU. It was missing for years and I am not sure that this code is really needed. Please review.

git-svn-id: trunk@13141 -
yury 16 년 전
부모
커밋
c6253d5bd7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/x86_64/rgcpu.pas

+ 1 - 1
compiler/x86_64/rgcpu.pas

@@ -32,7 +32,7 @@ unit rgcpu;
 
 
      type
      type
        trgcpu = class(trgx86)
        trgcpu = class(trgx86)
-         procedure add_constraints(reg:Tregister);
+         procedure add_constraints(reg:Tregister); override;
        end;
        end;
 
 
   implementation
   implementation