xref: /minix/external/bsd/llvm/dist/llvm/test/MC/ELF/gnu-type.s (revision 0a6a1f1d)
1// RUN: llvm-mc -triple i686-elf -filetype asm -o - %s | FileCheck %s
2
3	.type TYPE STT_FUNC
4// CHECK: .type TYPE,@function
5
6	.type comma_TYPE, STT_FUNC
7// CHECK: .type comma_TYPE,@function
8
9	.type at_TYPE, @STT_FUNC
10// CHECK: .type at_TYPE,@function
11
12	.type percent_TYPE, %STT_FUNC
13// CHECK: .type percent_TYPE,@function
14
15	.type string_TYPE, "STT_FUNC"
16// CHECK: .type string_TYPE,@function
17
18	.type type function
19// CHECK: .type type,@function
20
21	.type comma_type, function
22// CHECK: .type comma_type,@function
23
24	.type at_type, @function
25// CHECK: .type at_type,@function
26
27	.type percent_type, %function
28// CHECK: .type percent_type,@function
29
30	.type string_type, "function"
31// CHECK: .type string_type,@function
32
33	.type special gnu_unique_object
34// CHECK: .type special,@gnu_unique_object
35
36	.type comma_special, gnu_unique_object
37// CHECK: .type comma_special,@gnu_unique_object
38
39