Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2004-02-20-Builtins.c
1 // RUN: %llvmgcc -O3 -xc %s -S -o - | not grep builtin
2
3 #include <math.h>
4
5 void zsqrtxxx(float num) {
6    num = sqrt(num);
7 }
8