Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / empty-function.ll
blobdba51225b6989c0989db44ff3cd2f342d9c61f64
1 ; RUN: llc -mtriple=amdgcn -mcpu=tahiti -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
2 ; RUN: llc -mtriple=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 }