tccgen.c: Try to make sizeof(!x) work.

tests/tests2/27_sizeof.*: Add test.
This commit is contained in:
Edmund Grimley Evans
2015-11-22 00:00:36 +00:00
parent 737f984213
commit 7301b42e36
3 changed files with 4 additions and 3 deletions

View File

@ -10,6 +10,8 @@ int main()
printf("%d\n", sizeof(b));
printf("%d\n", sizeof(c));
printf("%d\n", sizeof(!a));
return 0;
}

View File

@ -1,3 +1,4 @@
1
4
8
4