mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
249 B
6 lines
249 B
#!/bin/sh
|
|
|
|
for off in 0 1; do ./check_align uint16_t $off; done
|
|
for off in 0 1 2 3; do ./check_align uint32_t $off; done
|
|
for off in 0 1 2 3 4 5 6 7; do ./check_align uint64_t $off; done
|
|
for off in 0 1 2 3 4 5 6 7; do ./check_align double $off; done
|
|
|