blob: 0c9ac7cae8afb3c444e0e749c3eedf34e2ec3570 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin
2
Matthijs Kooijmanb0bf82d2008-06-10 14:37:44 +00003#include <math.h>
4
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005void zsqrtxxx(float num) {
6 num = sqrt(num);
7}
8