aboutsummaryrefslogtreecommitdiffstats
path: root/test/aarch64/c/bitwise1.c
blob: d20641de484d9232a29d54d6ef2860d759cb7573 (plain)
1
2
3
4
5
6
7
8
int main()
{
  int x = 6, y = 4;
  x = x^y;
  y = x^876987^x | y << 42;

	return ~x^y;
}