Home | History | Annotate | Download | only in Mips
      1 ; RUN: llc -O0 -march=mipsel -mcpu=mips32r2 -target-abi=o32 < %s -filetype=asm -o - \
      2 ; RUN:   | FileCheck -check-prefixes=PTR32,ALL %s
      3 ; RUN: llc -O0 -march=mips64el -mcpu=mips64r2 -target-abi=n32 < %s -filetype=asm -o - \
      4 ; RUN:   | FileCheck  -check-prefixes=PTR32,ALL %s
      5 ; RUN: llc -O0 -march=mips64el -mcpu=mips64r2 -target-abi=n64 < %s -filetype=asm -o - \
      6 ; RUN:   | FileCheck -check-prefixes=PTR64,ALL %s
      7 
      8 ; PTR32: lw $[[R0:[0-9]+]]
      9 ; PTR64: ld $[[R0:[0-9]+]]
     10 
     11 ; ALL: ll ${{[0-9]+}}, 0($[[R0]])
     12 
     13 define {i16, i1} @foo(i16* %addr, i16 signext %r, i16 zeroext %new) {
     14   %res = cmpxchg i16* %addr, i16 %r, i16 %new seq_cst seq_cst
     15   ret {i16, i1} %res
     16 }
     17 
     18