Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Bitcode / inalloca.ll
blob294f44e61e437aef6d204ca97897771ba7efc836
1 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
2 ; RUN: verify-uselistorder < %s
4 ; inalloca should roundtrip.
6 define void @foo(i32* inalloca(i32) %args) {
7   ret void
9 ; CHECK-LABEL: define void @foo(ptr inalloca(i32) %args)
11 define void @bar() {
12   ; Use the maximum alignment, since we stuff our bit with alignment.
13   %args = alloca inalloca i32, align 4294967296
14   call void @foo(i32* inalloca(i32) %args)
15   ret void
17 ; CHECK-LABEL: define void @bar() {
18 ; CHECK: %args = alloca inalloca i32, align 4294967296
19 ; CHECK: call void @foo(ptr inalloca(i32) %args)