blob: 2d2245ea5c098d78eb91c85ec674a987a10ade37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
int foo(int a, int b)
{
return ((a & 0xfffff000) | b) & 0xfff;
}
/*
* check-name: and-or-mask0
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-excludes: or\\.
*/
|