The method of doing the matching with a 'select' instruction was wrong. The
[oota-llvm.git] / test / FrontendC / 2004-02-20-Builtins.c
1 // RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin
2
3 #include <math.h>
4
5 void zsqrtxxx(float num) {
6    num = sqrt(num);
7 }
8