powerpc/asm: Convert .llong directives to .8byte

.llong is an undocumented PPC specific directive. The generic
equivalent is .quad, but even better (because it's self describing) is
.8byte.

Convert all .llong directives to .8byte.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Tobin C. Harding
2017-03-09 16:42:12 +11:00
committed by Michael Ellerman
parent 5b593949f8
commit eb039161da
12 changed files with 39 additions and 39 deletions

View File

@@ -8,7 +8,7 @@ message:
.section ".toc"
.balign 8
pattern:
.llong 0x5555AAAA5555AAAA
.8byte 0x5555AAAA5555AAAA
.text
FUNC_START(_start)