blob: 8a3928c52dcc7413cbcdaf0b396f86ef10c0f860 [file] [log] [blame]
Bill Wendling4fc2b732008-09-16 06:30:47 +00001// RUN: %llvmgcc -S %s -o - | grep {llvm.ctlz.i32(i32} | count 2
Dan Gohman28beeea2007-08-15 13:36:28 +00002// 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}