Jan Wen Voung | efbdbe5 | 2010-09-30 05:59:22 +0000 | [diff] [blame^] | 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 constant [6 x i8] c"tring\00" |
| 6 | @.str2 = private constant [7 x i8] c"String\00" |
| 7 | @.c8a = private constant [1 x i64] [i64 42] |
| 8 | @.c8b = private 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', 7) # '.rodata.str1.1' |
| 24 | ; 64-NEXT: ('sh_type', 1) |
| 25 | ; 64-NEXT: ('sh_flags', 50) |
| 26 | ; 64-NEXT: ('sh_addr', |
| 27 | ; 64-NEXT: ('sh_offset', |
| 28 | ; 64-NEXT: ('sh_size', 13) |
| 29 | ; 64-NEXT: ('sh_link', |
| 30 | ; 64-NEXT: ('sh_info', |
| 31 | ; 64-NEXT: ('sh_addralign', 1) |
| 32 | ; 64-NEXT: ('sh_entsize', 1) |
| 33 | |
| 34 | ; 64: (('sh_name', 22) # '.rodata.cst8' |
| 35 | ; 64-NEXT: ('sh_type', 1) |
| 36 | ; 64-NEXT: ('sh_flags', 18) |
| 37 | ; 64-NEXT: ('sh_addr', |
| 38 | ; 64-NEXT: ('sh_offset', |
| 39 | ; 64-NEXT: ('sh_size', 16) |
| 40 | ; 64-NEXT: ('sh_link', |
| 41 | ; 64-NEXT: ('sh_info', |
| 42 | ; 64-NEXT: ('sh_addralign', 8) |
| 43 | ; 64-NEXT: ('sh_entsize', 8) |
| 44 | |