blob: 0c9ac7cae8afb3c444e0e749c3eedf34e2ec3570 [file] [log] [blame]
Chris Lattner54e4e202004-02-20 19:08:12 +00001// RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin
2
Matthijs Kooijmanb7e103b2008-06-10 14:37:44 +00003#include <math.h>
4
Chris Lattner54e4e202004-02-20 19:08:12 +00005void zsqrtxxx(float num) {
6 num = sqrt(num);
7}
8