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

char  ult(unsigned short x)
{
	return (int) x;
}

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