Diff of /test/expr-unary.c [000000] .. [ebd1a4]  Maximize  Restore

Switch to unified view

a b/test/expr-unary.c
1
void test()
2
{
3
  int a;
4
  int *b;
5
  a = -1;
6
  a = +2;
7
  a = ~4;
8
  a = *b;
9
  a = -a;
10
  a = +a;
11
  a = ~a;
12
}