Add support for Andes NDS32:
[deliverable/binutils-gdb.git] / gas / testsuite / gas / nios2 / movi.s
CommitLineData
36591ba1
SL
1# Source file used to test silent conversion of
2# movi to orhi etc
3
4foo:
5# this doesn't get converted
6movi r2, 0x20
7
8# this does
9movi r2, 0x20000000
10
11# addi should convert only if the source register is r0
12addi r2, r0, 0xffff0000
13# but we can't test for non-conversion because the value would
14# be out of range
15
16# logical ops should convert for any register
17ori r2, r5, 0xffff0000
18xori r2, r10, 0xffff0000
19andi r2, r15, 0xffff0000
20
21
This page took 0.054446 seconds and 4 git commands to generate.