[libc++][NFC] Fix incorrect comment for vector::assign(iter, iter) test
[llvm-project.git] / llvm / test / CodeGen / SPIRV / llvm-intrinsics / ctlz.ll
blob480ea761a669cfb5757e136647aac921673962bf
1 ; RUN: llc -verify-machineinstrs -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s
3 ; CHECK: %[[#extinst_id:]] = OpExtInstImport "OpenCL.std"
5 ; CHECK: OpFunction
6 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#extinst_id]] clz
7 ; CHECK: OpFunctionEnd
9 define spir_func i32 @TestClz(i32 %x) local_unnamed_addr {
10 entry:
11   %0 = tail call i32 @llvm.ctlz.i32(i32 %x, i1 true)
12   ret i32 %0
15 declare i32 @llvm.ctlz.i32(i32, i1 immarg)