2
0
mirror of https://github.com/bebbo/amigaos-cross-toolchain.git synced 2025-12-08 22:38:24 +00:00
Files
amigaos-cross-toolchain6/test/test12/cc
2017-05-27 09:51:27 +02:00

7 lines
358 B
Plaintext
Executable File

m68k-amigaos-gcc -S -Ofast test.c -noixemul -mcpu=68000 -m68000 || exit 1
m68k-amigaos-gcc -S -Ofast test.c -noixemul -mcpu=68000 -m68000 -otestno.s -fbbb=- || exit 1
r="$(diff --brief golden.s test.s)"
[ "$r" == "" ] || diff golden.s test.s
[ "$r" == "" ] || exit 1
m68k-amigaos-gcc -o test -Ofast test.c -noixemul -mcpu=68000 -m68000 -mregparm=2 || exit 1