blob: eafcb62814bc13e91af95cd3df2ca2dd7d1994a8 [file] [log] [blame]
Bill Wendling10dd39b2008-09-16 06:40:04 +00001// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | count 3
2// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | grep declare | 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}