blob: 598ffb5132c08e8cf341a8a3c19f6bf40441a9e4 [file] [log] [blame]
Dan Gohman28beeea2007-08-15 13:36:28 +00001// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32( i32} | count 2
2// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | count 1
Chris Lattner478cc132006-01-17 06:24:01 +00003
4unsigned t2(unsigned X) {
5 return __builtin_clz(X);
6}
7int t1(int X) {
8 return __builtin_clz(X);
9}