* config/tc-mips.c (mips_set_options): Add sym32 field.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / bgeu.s
CommitLineData
252b5132
RH
1# Source file used to test the bgeu macro.
2
3text_label:
4 bgeu $4,$5,text_label
5 bgeu $0,$5,text_label
6 # A second argument of 0 or $0 is always true
7 bgeu $4,1,text_label
8 bgeu $4,2,text_label
9 bgeu $4,0x8000,text_label
10 bgeu $4,-0x8000,text_label
11 bgeu $4,0x10000,text_label
12 bgeu $4,0x1a5a5,text_label
13
14# bgtu is handled like bgeu, except when both arguments are registers.
15# Just sanity check it otherwise.
16 bgtu $4,$5,text_label
17 bgtu $4,$0,text_label
18 bgtu $4,0,text_label
19
20# Sanity test bgeul and bgtul
21 .set mips2
22 bgeul $4,$5,text_label
23 bgtul $4,$5,text_label
24
cb56d3d3 25# Branch to an external label.
f958455d
AO
26# bgeu $4,$5,external_label
27# bgtu $4,$5,external_label
28# bgeul $4,$5,external_label
29# bgtul $4,$5,external_label
cb56d3d3 30
252b5132
RH
31# Round to a 16 byte boundary, for ease in testing multiple targets.
32 nop
33 nop
This page took 0.264164 seconds and 4 git commands to generate.