Home | History | Annotate | Download | only in Mips
      1 ; RUN: llc -march=mips < %s | FileCheck %s
      2 
      3 define i32 @A0(i32 %u) nounwind  {
      4 entry:
      5 ; CHECK: clz 
      6   call i32 @llvm.ctlz.i32( i32 %u, i1 true )
      7   ret i32 %0
      8 }
      9 
     10 declare i32 @llvm.ctlz.i32(i32, i1) nounwind readnone 
     11