blob: 7ff0f576ac9155b9a3157db812b2e1d79cc62ca1 [file]
; RUN: clspv-opt -ReplaceOpenCLBuiltin %s -o %t.ll
; RUN: FileCheck %s < %t.ll
target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
target triple = "spir-unknown-unknown"
define i32 @isnormal_half(half %x) {
entry:
%call = call spir_func i32 @_Z8isnormalDh(half %x)
ret i32 %call
}
declare spir_func i32 @_Z8isnormalDh(half)
; CHECK: [[cast:%[a-zA-Z0-9_.]+]] = bitcast half %x to i16
; CHECK: [[abs:%[a-zA-Z0-9_.]+]] = and i16 [[cast]], 32767
; CHECK: [[lt:%[a-zA-Z0-9_.]+]] = icmp ult i16 [[abs]], 31744
; CHECK: [[ge:%[a-zA-Z0-9_.]+]] = icmp uge i16 [[abs]], 1024
; CHECK: [[and:%[a-zA-Z0-9_.]+]] = and i1 [[lt]], [[ge]]
; CHECK: [[zext:%[a-zA-Z0-9_]+]] = zext i1 [[and]] to i32
; CHECK: ret i32 [[zext]]