[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / call-cast-target-preallocated.ll
blobfc96a16fa8d00b7906a17b171a9a9c0efd77e265
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
3 target datalayout = "e-p:32:32"
4 target triple = "i686-pc-win32"
7 declare token @llvm.call.preallocated.setup(i32)
8 declare i8* @llvm.call.preallocated.arg(token, i32)
10 declare void @takes_i32(i32)
11 declare void @takes_i32_preallocated(i32* preallocated(i32))
13 define void @f() {
14 ; CHECK-LABEL: define void @f()
15   %t = call token @llvm.call.preallocated.setup(i32 1)
16   %a = call i8* @llvm.call.preallocated.arg(token %t, i32 0) preallocated(i32)
17   %arg = bitcast i8* %a to i32*
18   call void bitcast (void (i32)* @takes_i32 to void (i32*)*)(i32* preallocated(i32) %arg) ["preallocated"(token %t)]
19 ; CHECK: call void bitcast{{.*}}@takes_i32
20   ret void
23 define void @g() {
24 ; CHECK-LABEL: define void @g()
25   call void bitcast (void (i32*)* @takes_i32_preallocated to void (i32)*)(i32 0)
26 ; CHECK: call void bitcast{{.*}}@takes_i32_preallocated
27   ret void