We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8f2b7 commit b41ae49Copy full SHA for b41ae49
src/compiler/compiler-optimizations.md
@@ -63,6 +63,7 @@ Enables special optimizations for mathematical operations.
63
- Converts divisions to bit shifting if possible. Good conditions for this optimization: operands are integer, denominator is constant and power of 2.
64
- Converts modulo by 2 expressions to equavalent bitwise operation.
65
- Eliminates neutral binary expressions such as such as addition/subtraction with the constant-zero.
66
+- Eliminates runtime overflow checking for binary shifing expressions if right operand is constant.
67
68
---
69
0 commit comments