Serious cleanups. Make the TOC match the text for the class hierarchy,
[oota-llvm.git] / test / CFrontend / 2006-01-16-BitCountIntrinsicsUnsigned.c
1 // RUN: %llvmgcc -S %s -o - | grep 'llvm.ctlz.i32(i32'
2 // RUNMEIFWEHADSIGNEDTYPES: %llvmgcc -S %s -o - | not grep 'llvm.ctlz.i32(i32'
3
4 unsigned t2(unsigned X) {
5   return __builtin_clz(X);
6 }
7 int t1(int X) {
8   return __builtin_clz(X);
9 }