Skip to content
Snippets Groups Projects
Commit 24a7fdbd authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-08-18 13:30:35 by simonmar]

Disable jump tables for the time being; the register allocator gets confused about them.
parent 28dd526f
No related merge requests found
......@@ -506,7 +506,9 @@ be tuned.)
highest = if floating then targetMaxDouble else targetMaxInt
in
(
if not floating && choices > 4 && highTag - lowTag < toInteger (2 * choices) then
if False && -- jump tables disabled for now until the register allocator is
-- fixed to cope with them --SDM 18/8/2000
not floating && choices > 4 && highTag - lowTag < toInteger (2 * choices) then
mkJumpTable am' sortedAlts lowTag highTag udlbl
else
mkBinaryTree am' floating sortedAlts choices lowest highest udlbl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment