[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / fold-call.ll
blob8be817618cd92d87201aa4d0efa43cbdfcce86aa
1 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s
2 ; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
4 ; CHECK: test1
5 ; CHECK-NOT: mov
7 declare void @bar()
8 define void @test1(i32 %i0, i32 %i1, i32 %i2, i32 %i3, i32 %i4, i32 %i5, ptr %arg) nounwind {
9         call void @bar()
10         call void %arg()
11         ret void
14 ; PR14739
15 ; CHECK: test2
16 ; CHECK: mov{{.*}} $0, ([[REGISTER:%[a-z]+]])
17 ; CHECK-NOT: jmp{{.*}} *([[REGISTER]])
19 %struct.X = type { ptr }
20 define void @test2(ptr nocapture %x) {
21 entry:
22   %0 = load ptr, ptr %x
23   store ptr null, ptr %x
24   tail call void %0()
25   ret void