forked from Imagelibrary/rtems
bsps/powerpc: Fix tlbie instruction usage
GCC 10 no longer passes -many to the assembler. This enables more checks in the assembler. The 0 in the tlbie instruction is the L operand which selects a 4KiB page size.
This commit is contained in:
@@ -192,7 +192,7 @@ _return_to_ppcbug:
|
||||
flush_tlbs:
|
||||
lis r20, 0x1000
|
||||
1: addic. r20, r20, -0x1000
|
||||
tlbie r20
|
||||
tlbie r20, 0
|
||||
bgt 1b
|
||||
sync
|
||||
blr
|
||||
|
||||
Reference in New Issue
Block a user