Browse Source

* Use .space instead of .fill

git-svn-id: trunk@775 -
daniel 20 years ago
parent
commit
94447481c1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/aggas.pas

+ 2 - 2
compiler/aggas.pas

@@ -515,12 +515,12 @@ var
              begin
              begin
                if Tai_datablock(hp).is_global then
                if Tai_datablock(hp).is_global then
                  begin
                  begin
-                   asmwrite(#9'.global ');
+                   asmwrite(#9'.globl ');
                    asmwriteln(Tai_datablock(hp).sym.name);
                    asmwriteln(Tai_datablock(hp).sym.name);
                  end;
                  end;
                asmwrite(Tai_datablock(hp).sym.name);
                asmwrite(Tai_datablock(hp).sym.name);
                asmwriteln(':');
                asmwriteln(':');
-               asmwriteln(#9'.skip '+tostr(Tai_datablock(hp).size));
+               asmwriteln(#9'.space '+tostr(Tai_datablock(hp).size));
 {$ifdef disabled}
 {$ifdef disabled}
                if (target_info.system <> system_powerpc_darwin) or
                if (target_info.system <> system_powerpc_darwin) or
                   not tai_datablock(hp).is_global then
                   not tai_datablock(hp).is_global then