1typedef	unsigned int ui;
2typedef	         int si;
3
4si smul0(si a) {  return a * 0; }
5ui umul0(ui a) {  return a * 0; }
6
7/*
8 * check-name: muldiv-by-zero
9 * check-command: test-linearize -Wno-decl $file
10 * check-output-ignore
11 *
12 * check-output-excludes: mul[us]\\.
13 */
14