[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-reduce / no-replace-intrinsic-callee-with-undef.ll
blobf2463459cab6eeb1561f6dc0175e49446a81a8ae
1 ; Intrinsic calls can't be uniformly replaced with undef without invalidating
2 ; IR (eg: only intrinsic calls can have metadata arguments), so ensure they are
3 ; not replaced. The whole call instruction can be removed by instruction
4 ; reduction instead.
6 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=ALL,CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t 2> %t.log
7 ; RUN: FileCheck -implicit-check-not=uninteresting --check-prefixes=ALL,CHECK-FINAL %s < %t
9 ; Check that the call is removed by instruction reduction passes
10 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefix=ALL --test-arg %s --test-arg --input-file %s -o %t
11 ; RUN: FileCheck -implicit-check-not=uninteresting --check-prefixes=ALL,CHECK-NOCALL %s < %t
14 declare i8* @llvm.sponentry.p0i8()
15 declare void @uninteresting()
17 ; ALL-LABEL: define i8* @interesting(
18 define i8* @interesting() {
19 entry:
20   ; CHECK-INTERESTINGNESS: call
21   ; CHECK-NOCALL-NOT: call
23   ; CHECK-FINAL: %call = call i8* @llvm.sponentry.p0i8()
24   ; CHECK-FINAL-NEXT: ret i8* %call
25   %call = call i8* @llvm.sponentry.p0i8()
26   call void @uninteresting()
27   ret i8* %call