URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.20.1/] [gas/] [testsuite/] [gas/] [sh/] [sh64/] [err-2.s] - Rev 215
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do assemble } ! { dg-options "--abi=32 --isa=shmedia" } ! ! This is a mainly a copy of movi64-2.s, but we check that out-of-range ! errors are emitted for the 32-bit ABI. .text start: movi 65536 << 16,r3 ! { dg-error "not a 32-bit signed value" } movi -32769 << 16,r3 ! { dg-error "not a 32-bit signed value" } movi 32768 << 16,r3 movi -32768 << 16,r3 movi 32767 << 48,r3 ! { dg-error "not a 32-bit signed value" } movi 32768 << 48,r3 ! { dg-error "not a 32-bit signed value" } movi -32768 << 48,r3 ! { dg-error "not a 32-bit signed value" }
Go to most recent revision | Compare with Previous | Blame | View Log