[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / llvm / test / MC / AsmParser / macro-def-in-instantiation.s
blob96ddde824904c1590147e868c81800a055da1708
1 # RUN: llvm-mc -triple=x86_64 %s | FileCheck %s
2 # RUN: llvm-mc -triple=x86_64-apple-darwin10 %s | FileCheck %s
4 .macro make_macro a, b, c ,d ,e, f
5 \a \b \c
6 \d \e
7 \f
8 .endm
9 make_macro .macro,mybyte,a,.byte,\a,.endm
10 # CHECK: .byte 42
11 mybyte 42