blob: ed4bac4106621c177e35004c41f5dfe7e6de99c0 (
plain)
1
2
3
4
5
6
7
|
# This test fails on HC11/HC12 when it is compiled without -mshort because
# is uses an asm that requires two 32-bit registers (int). It passes
# when using -mshort because there are enough registers; force -mshort.
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"] } {
set options "-mshort"
}
return 0
|