1; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s
2; Verify that llvm.ident metadata is emitted as .ident
3; directives in assembly files, and in the .comment section in ELF object files.
4
5; CHECK: .ident  "clang version x.x"
6; CHECK-NEXT: .ident  "something else"
7!llvm.ident = !{!0, !1}
8!0 = !{!"clang version x.x"}
9!1 = !{!"something else"}
10