reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \ # RUN: llvm-objdump -d -r - | FileCheck %s .global foo .weak bar .set bar, b .set foo, b .set foo, a a: nop # CHECK-NOT: a: # CHECK: foo: b: nop # CHECK-NOT: b: # CHECK-NOT: foo: # CHECK: bar: |