aboutsummaryrefslogtreecommitdiff
path: root/tests/tcctest.c
diff options
context:
space:
mode:
authorgrischka <grischka>2016-12-15 17:04:07 +0100
committergrischka <grischka>2016-12-15 17:04:07 +0100
commit2b7ee000cd3dd49283f73a95bb0a09cb2de7039f (patch)
tree0a44baf6b854f9a09fb9d950434adccc498d129e /tests/tcctest.c
parentca92bfc3c64128872793c167de3a58a78b9a1299 (diff)
downloadtinycc-2b7ee000cd3dd49283f73a95bb0a09cb2de7039f.tar.gz
tinycc-2b7ee000cd3dd49283f73a95bb0a09cb2de7039f.tar.bz2
tests: add .so/.dll creation test
Also remove bitfield test from tcctest.c because gcc versions don't agree among each other.
Diffstat (limited to 'tests/tcctest.c')
-rw-r--r--tests/tcctest.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/tcctest.c b/tests/tcctest.c
index b0fe8f3..5851fb4 100644
--- a/tests/tcctest.c
+++ b/tests/tcctest.c
@@ -1634,15 +1634,6 @@ void bitfield_test(void)
st2.f3 = a;
st2.f2++;
printf("%lld %lld %lld\n", st2.f1, st2.f2, st2.f3);
- struct sbf3 {
- int f1 : 7;
- int f2 : 1;
- char f3;
- int f4 : 8;
- int f5 : 1;
- int f6 : 16;
- } st3;
- printf("sizeof(st3) = %d\n", sizeof(st3));
}
#ifdef __x86_64__