Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Verifier / gc_none_token.ll
blob3847f625c4869f8a03c9e768410c7c7bd8f65cf1
1 ; RUN: not opt -passes=verify -S %s 2>&1 | FileCheck %s
2 ; Check that verifier doesn't crash on relocate with none token
4 target triple = "x86_64-unknown-linux-gnu"
6 define i32 @check_verify_none_token() gc "statepoint-example" {
8 entry:
9     ret i32 0
11 unreach:
12     ; CHECK: gc relocate is incorrectly tied to the statepoint
13     ; CHECK: (undef, undef)
14     %token_call = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token none, i32 0, i32 0)
15     ret i32 1
18 declare i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token, i32, i32)