mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
f2e33e8135
As a first step towards real little-endian code generation, this patch changes the PowerPC MC layer to actually generate little-endian object files. This involves passing the little-endian flag through the various layers, including down to createELFObjectWriter so we actually get basic little-endian ELF objects, emitting instructions in little-endian order, and handling fixups and relocations as appropriate for little-endian. The bulk of the patch is to update most test cases in test/MC/PowerPC to verify both big- and little-endian encodings. (The only test cases *not* updated are those that create actual big-endian ABI code, like the TLS tests.) Note that while the object files are now little-endian, the generated code itself is not yet updated, in particular, it still does not adhere to the ELFv2 ABI. llvm-svn: 204634
16 lines
354 B
ArmAsm
16 lines
354 B
ArmAsm
# RUN: llvm-mc -triple powerpc-unknown-unknown %s
|
|
# RUN: llvm-mc -triple powerpc64-unknown-unknown %s
|
|
# RUN: llvm-mc -triple powerpc64le-unknown-unknown %s
|
|
|
|
# For now, the only thing we check is that the .machine directive
|
|
# is accepted without syntax error.
|
|
|
|
.machine push
|
|
.machine any
|
|
.machine pop
|
|
|
|
.machine "push"
|
|
.machine "any"
|
|
.machine "pop"
|
|
|