Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11
# This test case includes a single case of a load hazard, whereby an # instruction references a register which is the target of a load. # The assembler must warn about this! .data foodata: .word 42 .text lw %2, foodata(%1) add %0, %1, %2