Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / speculative-execution-freecasts.ll
blobfbeb4abc135a61fddba0941d3c7598af9c6b79bf
1 ; RUN: opt < %s -S -mtriple=amdgcn-unknown-amdhsa -passes=speculative-execution \
2 ; RUN:   -spec-exec-max-speculation-cost 1 -spec-exec-max-not-hoisted 1 \
3 ; RUN:   | FileCheck %s
5 ; CHECK-LABEL: @ifThen_bitcast(
6 ; CHECK: bitcast
7 ; CHECK: br i1 true
8 define void @ifThen_bitcast(i32 %y) {
9   br i1 true, label %a, label %b
12   %x = bitcast i32 %y to float
13   br label %b
16   ret void
19 ; CHECK-LABEL: @ifThen_addrspacecast(
20 ; CHECK: addrspacecast
21 ; CHECK: br i1 true
22 define void @ifThen_addrspacecast(ptr %y) {
23   br i1 true, label %a, label %b
25   %x = addrspacecast ptr %y to ptr addrspace(1)
26   br label %b
29   ret void