fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git] / test / CodeGen / SPARC / ctpop.ll
blob37d1c5a5706dfa8691fbe509ce166ba1232cf39b
1 ; RUN: llc < %s -march=sparc -mattr=v9 -enable-sparc-v9-insts
2 ; RUN: llc < %s -march=sparc -mattr=-v9 | \
3 ; RUN:   not grep popc
4 ; RUN: llc < %s -march=sparc -mattr=v9 -enable-sparc-v9-insts | grep popc
6 declare i32 @llvm.ctpop.i32(i32)
8 define i32 @test(i32 %X) {
9         %Y = call i32 @llvm.ctpop.i32( i32 %X )         ; <i32> [#uses=1]
10         ret i32 %Y