[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / empty-function.ll
blob7058b4149b4075e5ece0fc5d79d6fda12335da88
1 ; RUN: llc -march=amdgcn -mcpu=tahiti -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2 ; RUN: llc -march=amdgcn -mcpu=tonga -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
4 ; Make sure we don't assert on empty functions
6 ; SI: .text
7 ; SI-LABEL: {{^}}empty_function_ret:
8 ; SI: s_endpgm
9 ; SI: codeLenInByte = 4
10 define amdgpu_kernel void @empty_function_ret() #0 {
11   ret void
14 ; SI: .text
15 ; SI-LABEL: {{^}}empty_function_unreachable:
16 ; SI: codeLenInByte = 0
17 define amdgpu_kernel void @empty_function_unreachable() #0 {
18   unreachable
21 attributes #0 = { nounwind }