summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/ident-metadata.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/ident-metadata.ll')
-rw-r--r--test/CodeGen/X86/ident-metadata.ll9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/X86/ident-metadata.ll b/test/CodeGen/X86/ident-metadata.ll
new file mode 100644
index 0000000000..211d882694
--- /dev/null
+++ b/test/CodeGen/X86/ident-metadata.ll
@@ -0,0 +1,9 @@
+; RUN: llc -march=x86 < %s | FileCheck %s
+; Verify that llvm.ident metadata is emitted as .ident
+; directives in assembly files, and in the .comment section in ELF object files.
+
+; CHECK: .ident "clang version x.x"
+; CHECK-NEXT: .ident "something else"
+!llvm.ident = !{!0, !1}
+!0 = metadata !{metadata !"clang version x.x"}
+!1 = metadata !{metadata !"something else"}