Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / RISCV / ghccc-nest.ll
blobc8ed3895a0a576ea81c2b335e6ed0db717bf171e
1 ; RUN: not --crash llc -mtriple=riscv64 -mattr=+f,+d -verify-machineinstrs -filetype=null < %s 2>&1 | FileCheck %s
2 ; RUN: not --crash llc -mtriple=riscv32 -mattr=+f,+d -verify-machineinstrs -filetype=null < %s 2>&1 | FileCheck %s
4 define ghccc ptr @nest_receiver(ptr nest %arg) nounwind {
5   ret ptr %arg
8 define ghccc ptr @nest_caller(ptr %arg) nounwind {
9   %result = call ghccc ptr @nest_receiver(ptr nest %arg)
10   ret ptr %result
13 ; CHECK: LLVM ERROR: Attribute 'nest' is not supported in GHC calling convention