mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
10 lines
370 B
LLVM
10 lines
370 B
LLVM
|
; 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"}
|