mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
a2ef865fa9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192767 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
381 B
LLVM
10 lines
381 B
LLVM
; RUN: llc -mtriple=x86_64-linux < %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"}
|