1 ; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
2 ; Verify that llvm.commandline metadata is emitted to a section named
3 ; .GCC.command.line with each line separated with null bytes.
5 ; CHECK: .section .GCC.command.line,"MS",@progbits,1
7 ; CHECK-NEXT: .ascii "clang -command -line"
9 ; CHECK-NEXT: .ascii "something else"
11 !llvm.commandline = !{!0, !1}
12 !0 = !{!"clang -command -line"}
13 !1 = !{!"something else"}