Home | History | Annotate | Download | only in Mips
      1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \
      2 # RUN:   llvm-objdump -d -r - | FileCheck %s
      3 
      4   .global foo
      5   .weak bar
      6   .set bar, b
      7   .set foo, b
      8   .set foo, a
      9 a:
     10   nop
     11 # CHECK-NOT: a:
     12 # CHECK: foo:
     13 
     14 b:
     15   nop
     16 # CHECK-NOT: b:
     17 # CHECK-NOT: foo:
     18 # CHECK: bar:
     19