[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Verifier / elementtype.ll
blob22bfe720c7482cda1ef16729a662a2dd26bc37a2
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
3 declare void @some_function(i32*)
5 ; CHECK: Attribute 'elementtype(i32)' applied to incompatible type!
6 define void @type_mismatch1() {
7   call i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32* null, i32 elementtype(i32) 0, i32 0)
8   ret void
11 ; CHECK: Attribute 'elementtype' type does not match parameter!
12 define void @type_mismatch2() {
13   call i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32* elementtype(i64) null, i32 0, i32 0)
14   ret void
17 ; CHECK: Attribute 'elementtype' can only be applied to intrinsics and inline asm.
18 define void @not_intrinsic() {
19   call void @some_function(i32* elementtype(i32) null)
20   ret void
23 ; CHECK: Attribute 'elementtype' can only be applied to a callsite.
24 define void @llvm.not_call(i32* elementtype(i32)) {
25   ret void
28 define void @elementtype_required() {
29 ; CHECK: Intrinsic requires elementtype attribute on first argument.
30   call i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32* null, i32 0, i32 0)
31 ; CHECK: Intrinsic requires elementtype attribute on first argument.
32   call i32* @llvm.preserve.struct.access.index.p0i32.p0i32(i32* null, i32 0, i32 0)
33   ret void
36 declare i32* @llvm.preserve.array.access.index.p0i32.p0i32(i32*, i32, i32)
37 declare i32* @llvm.preserve.struct.access.index.p0i32.p0i32(i32*, i32, i32)