make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / FrontendC / 2006-01-16-BitCountIntrinsicsUnsigned.c
blobeafcb62814bc13e91af95cd3df2ca2dd7d1994a8
1 // 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
4 unsigned t2(unsigned X) {
5 return __builtin_clz(X);
7 int t1(int X) {
8 return __builtin_clz(X);