Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / sramecc-subtarget-feature-disabled.ll
blob1e4e9f3e13fe2bb30b71293335d8e13181772bd9
1 ; RUN: llc -mtriple=amdgcn -mcpu=gfx700 -debug-only=amdgpu-subtarget -o - %s 2>&1 | FileCheck --check-prefix=WARN %s
2 ; RUN: llc -mtriple=amdgcn -mcpu=gfx906 -debug-only=amdgpu-subtarget -o - %s 2>&1 | FileCheck --check-prefix=OFF %s
3 ; RUN: llc -mtriple=amdgcn -mcpu=gfx908 -debug-only=amdgpu-subtarget -o - %s 2>&1 | FileCheck --check-prefix=OFF %s
5 ; REQUIRES: asserts
7 ; WARN: warning: sramecc 'Off' was requested for a processor that does not support it!
8 ; OFF: sramecc setting for subtarget: Off
10 define void @sramecc-subtarget-feature-disabled() #0 {
11   ret void
14 attributes #0 = { "target-features"="-sramecc" }