2005-05-04 17:56:34 +02:00
|
|
|
; Make sure this testcase codegens to the ctlz instruction
|
2009-09-09 02:09:15 +02:00
|
|
|
; RUN: llc < %s -march=alpha -mcpu=ev67 | grep -i ctlz
|
|
|
|
; RUN: llc < %s -march=alpha -mattr=+CIX | grep -i ctlz
|
|
|
|
; RUN: llc < %s -march=alpha -mcpu=ev6 | not grep -i ctlz
|
|
|
|
; RUN: llc < %s -march=alpha -mattr=-CIX | not grep -i ctlz
|
2005-05-04 17:51:07 +02:00
|
|
|
|
2007-08-04 03:51:18 +02:00
|
|
|
declare i8 @llvm.ctlz.i8(i8)
|
2005-05-04 17:51:07 +02:00
|
|
|
|
2007-04-15 20:40:57 +02:00
|
|
|
define i32 @bar(i8 %x) {
|
2005-05-04 17:51:07 +02:00
|
|
|
entry:
|
2007-08-04 03:51:18 +02:00
|
|
|
%tmp.1 = call i8 @llvm.ctlz.i8( i8 %x )
|
|
|
|
%tmp.2 = sext i8 %tmp.1 to i32
|
|
|
|
ret i32 %tmp.2
|
2005-05-04 17:51:07 +02:00
|
|
|
}
|