summaryrefslogtreecommitdiff
path: root/test/Verifier/inalloca2.ll
blob: ed65667dc30808ec721328190185392f9964ef6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; This used to be invalid, but now it's valid.  Ensure the verifier
; doesn't reject it.
; RUN: llvm-as %s -o /dev/null

declare void @doit(i64* inalloca %a)

define void @a() {
entry:
  %a = alloca [2 x i32]
  %b = bitcast [2 x i32]* %a to i64*
  call void @doit(i64* inalloca %b)
  ret void
}

define void @b() {
entry:
  %a = alloca i64
  call void @doit(i64* inalloca %a)
  call void @doit(i64* inalloca %a)
  ret void
}