Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Verifier / 2002-11-05-GetelementptrPointers.ll
bloba4b0cd9635741e9e8c3e9905069f288a30d5ac90
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2 ; CHECK: invalid getelementptr indices
4 ; This testcase is invalid because we are indexing into a pointer that is 
5 ; contained WITHIN a structure.
7 define void @test(ptr %X) {
8         getelementptr {i32, ptr}, ptr %X, i32 0, i32 1, i32 0
9         ret void