Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / X86 / ptrtoint-constexpr-invalid.ll
blobf1f5d7e2b7204c73892862511c6a6af3a84a9386
1 ; RUN: not --crash llc < %s -mtriple=i386-linux 2>&1 | FileCheck %s
3 ; ptrtoint expressions that cast to a wider integer type are not supported.
4 ; A frontend can achieve a similar result by casting to the correct integer
5 ; type and explicitly zeroing any additional bytes.
6 ; { i32, i32 } { i32 ptrtoint (ptr @r to i32), i32 0 }
8 ; CHECK: LLVM ERROR: Unsupported expression in static initializer: ptrtoint (ptr @r to i64)
10 @r = global i64 ptrtoint (ptr @r to i64)