[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / PowerPC / cttz.ll
blob0cf910d6788d7d461870b90100d021f23d6a6423
1 ; Make sure this testcase does not use ctpop
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- -mcpu=g5 | FileCheck %s
4 declare i32 @llvm.cttz.i32(i32, i1)
6 define i32 @bar(i32 %x) {
7 entry:
8 ; CHECK: @bar
9 ; CHECK: cntlzw
10         %tmp.1 = call i32 @llvm.cttz.i32( i32 %x, i1 true )              ; <i32> [#uses=1]
11         ret i32 %tmp.1