Files
clang-p2996/llvm/test/CodeGen/Alpha/ctlz.ll
Reid Spencer 6584cf60f2 For PR1336:
XFAIL tests covered by the PR. These will be un-XFAILed as they are fixed.

llvm-svn: 36093
2007-04-15 23:00:46 +00:00

16 lines
533 B
LLVM

; Make sure this testcase codegens to the ctlz instruction
; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev67 | grep -i ctlz
; RUN: llvm-as < %s | llc -march=alpha -mattr=+CIX | grep -i ctlz
; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev6 | not grep -i ctlz
; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | not grep -i ctlz
; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | not grep -i ctlz
; XFAIL: *
declare i32 @llvm.ctlz.i8(i8)
define i32 @bar(i8 %x) {
entry:
%tmp.1 = call i32 @llvm.ctlz.i8( i8 %x )
ret i32 %tmp.1
}