2005-05-04 23:56:34 +08:00
|
|
|
; Make sure this testcase codegens to the ctpop instruction
|
2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=alpha -mcpu=ev67 | grep -i ctpop
|
|
|
|
; RUN: llc < %s -march=alpha -mattr=+CIX | \
|
2007-04-16 02:40:57 +08:00
|
|
|
; RUN: grep -i ctpop
|
2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=alpha -mcpu=ev6 | \
|
2007-04-16 02:40:57 +08:00
|
|
|
; RUN: not grep -i ctpop
|
2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=alpha -mattr=-CIX | \
|
2007-04-16 23:31:49 +08:00
|
|
|
; RUN: not grep -i ctpop
|
2005-05-04 23:20:16 +08:00
|
|
|
|
2008-02-19 09:41:04 +08:00
|
|
|
declare i64 @llvm.ctpop.i64(i64)
|
2005-05-04 23:20:16 +08:00
|
|
|
|
2008-02-19 09:41:04 +08:00
|
|
|
define i64 @bar(i64 %x) {
|
2005-05-04 23:20:16 +08:00
|
|
|
entry:
|
2008-02-19 09:41:04 +08:00
|
|
|
%tmp.1 = call i64 @llvm.ctpop.i64( i64 %x ) ; <i64> [#uses=1]
|
|
|
|
ret i64 %tmp.1
|
2005-05-04 23:20:16 +08:00
|
|
|
}
|
2008-02-19 09:41:04 +08:00
|
|
|
|