[ThinLTO] Add code comment. NFC
[llvm-complete.git] / test / MC / ELF / gnu-type.s
blob19029e48ee96796d92ae5a9e85dbec01b0c1d31a
1 // RUN: llvm-mc -triple i686-elf -filetype asm -o - %s | FileCheck %s
3 .type TYPE STT_FUNC
4 // CHECK: .type TYPE,@function
6 .type comma_TYPE, STT_FUNC
7 // CHECK: .type comma_TYPE,@function
9 .type at_TYPE, @STT_FUNC
10 // CHECK: .type at_TYPE,@function
12 .type percent_TYPE, %STT_FUNC
13 // CHECK: .type percent_TYPE,@function
15 .type string_TYPE, "STT_FUNC"
16 // CHECK: .type string_TYPE,@function
18 .type type function
19 // CHECK: .type type,@function
21 .type comma_type, function
22 // CHECK: .type comma_type,@function
24 .type at_type, @function
25 // CHECK: .type at_type,@function
27 .type percent_type, %function
28 // CHECK: .type percent_type,@function
30 .type string_type, "function"
31 // CHECK: .type string_type,@function
33 .type special gnu_unique_object
34 // CHECK: .type special,@gnu_unique_object
36 .type comma_special, gnu_unique_object
37 // CHECK: .type comma_special,@gnu_unique_object