mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
180f0bc045
Move tests for llvm-reduce to tools folder Reviewed By: fhahn, lebedev.ri Differential Revision: https://reviews.llvm.org/D99632
20 lines
513 B
LLVM
20 lines
513 B
LLVM
; Test that llvm-reduce can remove uninteresting metadata from an IR file.
|
|
; The Metadata pass erases named & unnamed metadata nodes.
|
|
;
|
|
; RUN: llvm-reduce --test %python --test-arg %p/Inputs/remove-metadata.py %s -o %t
|
|
; RUN: cat %t | FileCheck -implicit-check-not=! %s
|
|
|
|
@global = global i32 0, !dbg !0
|
|
|
|
define void @main() !dbg !0 {
|
|
ret void, !dbg !0
|
|
}
|
|
|
|
!uninteresting = !{!0}
|
|
; CHECK: !interesting = !{!0}
|
|
!interesting = !{!1}
|
|
|
|
!0 = !{!"uninteresting"}
|
|
; CHECK: !0 = !{!"interesting"}
|
|
!1 = !{!"interesting"}
|