brintos

brintos / llvm-project-archived public Read only

0
0
Text · 573 B · 5eacd95 Raw
26 lines · plain
1# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 \2# RUN:   -mattr=+micromips 2>&1 -filetype=obj > %t.o3# RUN: llvm-objdump %t.o -d | FileCheck %s4 5# Check that fixup data is written in the microMIPS specific little endian6# byte order.7 8    .text9    .globl  main10    .align  211    .type   main,@function12    .set    micromips13    .set    nomips1614    .ent    main15main:16    addiu   $sp, $sp, -1617    bnez    $9, lab118 19# CHECK:    09 b4 03 00    bnez $9, 0xe <lab1>20 21    addu    $zero, $zero, $zero22lab1:23    jr  $ra24    addiu   $sp, $sp, 1625    .end    main26