1 ; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck %s
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 }
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 4
9 ; CHECK: .section .note.foo,"a",@note
10 ; CHECK-NEXT: .p2align 2
11 ; CHECK-NEXT: foonote:
14 ; CHECK-NEXT: .long 17
15 ; CHECK-NEXT: .asciz "foobar"
17 ; CHECK-NEXT: .short 23
19 ; CHECK-NEXT: .size foonote, 24