summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/InstCombine/call-cast-attrs.ll
blob: ddaf90c3e74fd2df5d6a1073fed7451e3e83c66c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
; RUN: opt < %s -instcombine -S | FileCheck %s

define signext i32 @b(i32* inreg %x)   {
  ret i32 0
}

define void @c(...) {
  ret void
}

declare void @useit(i32)

define void @d(i32 %x, ...) {
  call void @useit(i32 %x)
  ret void
}

define void @g(i32* %y) {
  call i32 bitcast (i32 (i32*)* @b to i32 (i32)*)(i32 zeroext 0)
  call void bitcast (void (...)* @c to void (i32*)*)(i32* %y)
  call void bitcast (void (...)* @c to void (i32*)*)(i32* sret %y)
  call void bitcast (void (i32, ...)* @d to void (i32, i32*)*)(i32 0, i32* sret %y)
  ret void
}
; CHECK-LABEL: define void @g(i32* %y)
; CHECK: call i32 bitcast (i32 (i32*)* @b to i32 (i32)*)(i32 zeroext 0)
; CHECK: call void (...) @c(i32* %y)
; CHECK: call void bitcast (void (...)* @c to void (i32*)*)(i32* sret %y)
; CHECK: call void bitcast (void (i32, ...)* @d to void (i32, i32*)*)(i32 0, i32* sret %y)
OpenPOWER on IntegriCloud