Home | History | Annotate | Download | only in Mips
      1 # RUN: llvm-mc -triple mips-unknown-linux -show-encoding %s | FileCheck %s
      2 
      3 .text
      4 # CHECK:    .text
      5   abs $4, $4
      6 # CHECK:    bgez    $4, 8       # encoding: [0x04,0x81,0x00,0x02]
      7 # CHECK:    nop                 # encoding: [0x00,0x00,0x00,0x00]
      8 # CHECK:    neg     $4, $4      # encoding: [0x00,0x04,0x20,0x22]
      9   abs $4, $5
     10 # CHECK:    bgez    $5, 8       # encoding: [0x04,0xa1,0x00,0x02]
     11 # CHECK:    move    $4, $5      # encoding: [0x00,0xa0,0x20,0x21]
     12 # CHECK:    neg     $4, $5      # encoding: [0x00,0x05,0x20,0x22]
     13