brintos

brintos / llvm-project-archived public Read only

0
0
Text · 667 B · d8a3d93 Raw
20 lines · plain
1; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck %s2 3%struct.note = type { %struct.Elf32_Nhdr, [7 x i8], %struct.payload }4%struct.Elf32_Nhdr = type { i32, i32, i32 }5%struct.payload = type { i16 }6 7@foonote = internal constant %struct.note { %struct.Elf32_Nhdr { i32 7, i32 2, i32 17 }, [7 x i8] c"foobar\00", %struct.payload { i16 23 } }, section ".note.foo", align 48 9; CHECK:		.section	.note.foo,"a",@note10; CHECK-NEXT: .p2align	211; CHECK-NEXT: foonote:12; CHECK-NEXT: 	.long	713; CHECK-NEXT: 	.long	214; CHECK-NEXT: 	.long	1715; CHECK-NEXT: 	.asciz	"foobar"16; CHECK-NEXT: 	.zero	117; CHECK-NEXT: 	.short	2318; CHECK-NEXT: 	.zero	219; CHECK-NEXT: 	.size	foonote, 2420