aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/ext-trunc-same.c
blob: 634fdb87afb15f98be8c401e34dce9cebeee2bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
short seq(short x)
{
	return (int) x;
}

short ueq(unsigned short x)
{
	return (int) x;
}

/*
 * check-name: ext-trunc-same
 * check-command: test-linearize -Wno-decl $file
 * check-known-to-fail
 *
 * check-output-ignore
 * check-output-excludes: trunc\\.
 * check-output-excludes: sext\\.
 * check-output-excludes: zext\\.
 */