Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / CodeGen / Blackfin / ctlz16.ll
blob56a65c05853e001933fdfbd1ac08e795042f7bed
1 ; RUN: llc < %s -march=bfin
3 declare i16 @llvm.ctlz.i16(i16)
5 define i16 @ctlztest(i16 %B) {
6         %b = call i16 @llvm.ctlz.i16( i16 %B )          ; <i16> [#uses=1]
7         ret i16 %b;
9 define i16 @ctlztest_z(i16 zeroext %B) {
10         %b = call i16 @llvm.ctlz.i16( i16 %B )          ; <i16> [#uses=1]
11         ret i16 %b;
14 define i16 @ctlztest_s(i16 signext %B) {
15         %b = call i16 @llvm.ctlz.i16( i16 %B )          ; <i16> [#uses=1]
16         ret i16 %b;