Training courses
Kernel and Embedded Linux
Bootlin training courses
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: