mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-27 13:30:05 +00:00
22 lines
462 B
LLVM
22 lines
462 B
LLVM
|
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
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)
|
||
|
; CHECK: Inalloca argument is not an alloca!
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
define void @b() {
|
||
|
entry:
|
||
|
%a = alloca i64
|
||
|
call void @doit(i64* inalloca %a)
|
||
|
call void @doit(i64* inalloca %a)
|
||
|
; CHECK: Allocas can be used at most once with inalloca!
|
||
|
ret void
|
||
|
}
|