mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
11 lines
126 B
ArmAsm
11 lines
126 B
ArmAsm
|
# RUN: llvm-mc -triple i386 -filetype asm -o - %s | FileCheck %s
|
||
|
|
||
|
.macro it, cond
|
||
|
.endm
|
||
|
|
||
|
it ne
|
||
|
.long 1
|
||
|
|
||
|
# CHECK: .long 1
|
||
|
|