xref: /illumos-gate/usr/src/tools/smatch/src/validation/optim/ext-trunc-same.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
1 short seq(short x)
2 {
3 	return (int) x;
4 }
5 
6 short ueq(unsigned short x)
7 {
8 	return (int) x;
9 }
10 
11 /*
12  * check-name: ext-trunc-same
13  * check-command: test-linearize -Wno-decl $file
14  *
15  * check-output-ignore
16  * check-output-excludes: trunc\\.
17  * check-output-excludes: sext\\.
18  * check-output-excludes: zext\\.
19  */
20