blob: 3d7c9744aa266a32cbd50d61a2a8b4139d388712 [file] [log] [blame]
Laurent Viviere9d51502016-05-09 15:24:55 +02001// replace muldiv64(i32, i32, x) by (uint64_t)i32 * i32 / x
2@@
3typedef uint32_t;
4typedef int32_t;
5{ uint32_t, int32_t, int, unsigned int } a, b;
6typedef uint64_t;
7expression c;
8@@
9
10-muldiv64(a,b,c)
11+(uint64_t) a * b / c