xref: /llvm-project/llvm/test/MC/ELF/ARM/gnu-type-hash.s (revision 46f1d9fb5df3d3cdcfb2f1611646129bbdd1790e)
1@ RUN: llvm-mc -triple arm-elf -filetype asm -o - %s | FileCheck %s
2
3	.syntax unified
4
5	.type TYPE #STT_FUNC
6// CHECK: .type TYPE,%function
7
8	.type type #function
9// CHECK: .type type,%function
10
11	.type comma_TYPE, #STT_FUNC
12// CHECK: .type comma_TYPE,%function
13
14	.type comma_type, #function
15// CHECK: .type comma_type,%function
16
17