[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / clzero.ll
bloba185cb7d05bd9aa0c03849f07e8713fa6f366834
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-linux -mattr=+clzero | FileCheck %s --check-prefix=X64
3 ; RUN: llc < %s -mtriple=i386-pc-linux -mattr=+clzero | FileCheck %s --check-prefix=X32
5 define void @foo(i8* %p) #0 {
6 ; X64-LABEL: foo:
7 ; X64:       # %bb.0: # %entry
8 ; X64-NEXT:    movq %rdi, %rax
9 ; X64-NEXT:    clzero
10 ; X64-NEXT:    retq
12 ; X32-LABEL: foo:
13 ; X32:       # %bb.0: # %entry
14 ; X32-NEXT:    movl {{[0-9]+}}(%esp), %eax
15 ; X32-NEXT:    clzero
16 ; X32-NEXT:    retl
17 entry:
18   tail call void @llvm.x86.clzero(i8* %p) #1
19   ret void
22 declare void @llvm.x86.clzero(i8*) #1