mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
16 lines
492 B
ArmAsm
16 lines
492 B
ArmAsm
|
# RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32 %s -o - | \
|
||
|
# RUN: llvm-readobj -h | \
|
||
|
# RUN: FileCheck %s -check-prefix=CHECK-OBJ
|
||
|
# RUN: llvm-mc -triple mipsel-unknown-linux -mcpu=mips32 %s -o -| \
|
||
|
# RUN: FileCheck %s -check-prefix=CHECK-ASM
|
||
|
|
||
|
# This *MUST* match the output of gas compiled with the same triple.
|
||
|
# CHECK-OBJ: Flags [ (0x50001000)
|
||
|
|
||
|
# CHECK-ASM: .nan 2008
|
||
|
# CHECK-ASM: .nan legacy
|
||
|
|
||
|
.nan 2008
|
||
|
// Let's override the previous directive!
|
||
|
.nan legacy
|