the following code
#include <stdint.h>
#include <stdio.h>
struct foobar{
uint16_t foo; // 4 bytes
uint64_t bar; // 8 bytes
};
int main(){
printf("%d\n", sizeof(struct foobar));
return 0;
}prints 16, gcc 4.7 prints 12 that is the correct result. Posted in http://ideone.com/grqlpU
_______________________________________________ Tinycc-devel mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/tinycc-devel
