about summary refs log tree commit diff homepage
path: root/test/regression/2015-08-30-sdiv-1.c
AgeCommit message (Collapse)Author
2015-08-30Fix signed division by constant 1/ -1Martin Nowack
Division by constant divisor get optimized using shift and multiplication operations in STP builder. The used method cannot be applied for divisor 1 and -1. In that case use slow path.