Browse Source

* made less complex for sparc so it compiles there too without running
out of registers

git-svn-id: trunk@7015 -

Jonas Maebe 18 years ago
parent
commit
ad7fddf99a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/webtbs/tw2242.pp

+ 2 - 2
tests/webtbs/tw2242.pp

@@ -10922,7 +10922,7 @@ s += chr(85);
 s += chr(86);
 s += chr(86);
 s += chr(87);
 s += chr(87);
 s += chr(88);
 s += chr(88);
-{$ifndef cpuarm}
+{$if not defined(cpuarm) and not defined(cpusparc)}
 s += chr(89);
 s += chr(89);
 s += chr(90);
 s += chr(90);
 s += chr(65);
 s += chr(65);
@@ -13076,6 +13076,6 @@ s += chr(80);
 s += chr(81);
 s += chr(81);
 s += chr(82);
 s += chr(82);
 s += chr(83);
 s += chr(83);
-{$endif cpuarm}
+{$endif cpuarm or cpusparc}
 writeln(s)
 writeln(s)
 END.
 END.