Änderungen

Summary

  1. Promote integer literals to floats (commit: dd70cdb) (details)
Commit dd70cdbd4fb32ea219001907538289c366c63d23 by lep.delete
Promote integer literals to floats
When compiling Jass to Bytecode we now convert Int literals into Real
literals when the asked type is integer. This way `2*x` is the same as
`2.0*x` (in the correct context) which we need to have to be able to
correctly match against the former case in the rewrite step.
(commit: dd70cdb)
The file was modifiedGNUmakefile (diff)
The file was modifiedHot/Instruction/Compiler.hs (diff)
The file was modifiedHot/Instruction/Opt/Rewrite/SomeRules.hs (diff)