74f0413ecbe60cd14a5a9fe4816d290fc5870180
[oota-llvm.git] / test / MC / ELF / entsize.ll
1 ; RUN: llc -filetype=obj -mtriple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck -check-prefix=64 %s
2
3 ; Test that constant mergeable strings have sh_entsize set.
4
5 @.str1 = private unnamed_addr constant [6 x i8] c"tring\00"
6 @.str2 = private unnamed_addr constant [7 x i8] c"String\00"
7 @.c8a = private unnamed_addr constant [1 x i64] [i64 42]
8 @.c8b = private unnamed_addr constant [1 x i64] [i64 42]
9
10 define i32 @main() nounwind {
11   %1 = call i32 @puts(i8* getelementptr inbounds ([6 x i8]* @.str1, i32 0, i32 0))
12   %2 = call i32 @puts(i8* getelementptr inbounds ([7 x i8]* @.str2, i32 0, i32 0))
13   call void @foo(i64* getelementptr inbounds ([1 x i64]* @.c8a, i32 0, i32 0))
14   call void @foo(i64* getelementptr inbounds ([1 x i64]* @.c8b, i32 0, i32 0))
15   ret i32 0
16 }
17
18 declare i32 @puts(i8* nocapture) nounwind
19 declare void @foo(i64* nocapture) nounwind
20
21 ;;;;;
22
23 ; 64: (('sh_name', 0x0000004e) # '.rodata.str1.1'
24 ; 64-NEXT:   ('sh_type', 0x00000001)
25 ; 64-NEXT:   ('sh_flags', 0x00000032)
26 ; 64-NEXT:   ('sh_addr',
27 ; 64-NEXT:   ('sh_offset',
28 ; 64-NEXT:   ('sh_size', 0x0000000d)
29 ; 64-NEXT:   ('sh_link',
30 ; 64-NEXT:   ('sh_info',
31 ; 64-NEXT:   ('sh_addralign', 0x00000001)
32 ; 64-NEXT:   ('sh_entsize', 0x00000001)
33
34 ; 64: (('sh_name', 0x00000041) # '.rodata.cst8'
35 ; 64-NEXT:   ('sh_type', 0x00000001)
36 ; 64-NEXT:   ('sh_flags', 0x00000012)
37 ; 64-NEXT:   ('sh_addr',
38 ; 64-NEXT:   ('sh_offset',
39 ; 64-NEXT:   ('sh_size', 0x00000010)
40 ; 64-NEXT:   ('sh_link',
41 ; 64-NEXT:   ('sh_info',
42 ; 64-NEXT:   ('sh_addralign', 0x00000008)
43 ; 64-NEXT:   ('sh_entsize', 0x00000008)
44