summaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/call-cast-target-inalloca.ll
blob: d9e3eb3675defedac196b65797095fc49fcd7d18 (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
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
; RUN: opt < %s -passes=instcombine -S | FileCheck %s

target datalayout = "e-p:32:32"
target triple = "i686-pc-linux-gnu"

declare void @takes_i32(i32)
declare void @takes_i32_inalloca(ptr inalloca(i32))

define void @f() {
; CHECK-LABEL: define void @f() {
; CHECK-NEXT:    [[ARGS:%.*]] = alloca inalloca i32, align 4
; CHECK-NEXT:    call void @takes_i32(ptr nonnull inalloca(i32) [[ARGS]])
; CHECK-NEXT:    ret void
;
  %args = alloca inalloca i32
  call void @takes_i32(ptr inalloca(i32) %args)
  ret void
}

define void @g() {
; CHECK-LABEL: define void @g() {
; CHECK-NEXT:    call void @takes_i32_inalloca(i32 0)
; CHECK-NEXT:    ret void
;
  call void @takes_i32_inalloca(i32 0)
  ret void
}