Browse Source

* also construct the high level code generator for high level targets; they
don't use it for creating interface stubs, but they do for the abstract
wrappers

git-svn-id: trunk@31684 -

Jonas Maebe 10 years ago
parent
commit
919bce9819
1 changed files with 0 additions and 6 deletions
  1. 0 6
      compiler/ncgvmt.pas

+ 0 - 6
compiler/ncgvmt.pas

@@ -1343,15 +1343,9 @@ implementation
 
     procedure write_vmts(st:tsymtable;is_global:boolean);
       begin
-        { high level targets use synthetic procdefs to create the inteface
-          wrappers }
-{$ifndef cpuhighleveltarget}
         create_hlcodegen;
-{$endif}
         do_write_vmts(st,is_global);
-{$ifndef cpuhighleveltarget}
         destroy_hlcodegen;
-{$endif}
       end;
 
 end.