Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Verifier / arm-intrinsics.ll
blob1e63715cfb9ec76ae6e12ea0b7d6e946ace91441
1 ; RUN: not opt -passes=verify -S < %s 2>&1 | FileCheck %s
3 define void @f(ptr %p) {
4 ; CHECK: Intrinsic requires elementtype attribute on first argument
5   %a = call i32 @llvm.arm.ldrex.p0(ptr %p)
6 ; CHECK: Intrinsic requires elementtype attribute on second argument
7   %c = call i32 @llvm.arm.strex.p0(i32 0, ptr %p)
9 ; CHECK: Intrinsic requires elementtype attribute on first argument
10   %a2 = call i32 @llvm.arm.ldaex.p0(ptr %p)
11 ; CHECK: Intrinsic requires elementtype attribute on second argument
12   %c2 = call i32 @llvm.arm.stlex.p0(i32 0, ptr %p)
13   ret void
16 declare i32 @llvm.arm.ldrex.p0(ptr)
17 declare i32 @llvm.arm.ldaex.p0(ptr)
18 declare i32 @llvm.arm.stlex.p0(i32, ptr)
19 declare i32 @llvm.arm.strex.p0(i32, ptr)