Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Verifier / allocsize.ll
blob25a676793df4100bfec83c6bd9a3d892a02a9516
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
3 ; CHECK: 'allocsize' element size argument is out of bounds
4 declare ptr @a(i32) allocsize(1)
6 ; CHECK: 'allocsize' element size argument must refer to an integer parameter
7 declare ptr @b(ptr) allocsize(0)
9 ; CHECK: 'allocsize' number of elements argument is out of bounds
10 declare ptr @c(i32) allocsize(0, 1)
12 ; CHECK: 'allocsize' number of elements argument must refer to an integer parameter
13 declare ptr @d(i32, ptr) allocsize(0, 1)
15 ; CHECK: 'allocsize' number of elements argument is out of bounds
16 declare ptr @e(i32, i32) allocsize(1, 2)