Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin |
2 | |||||
Matthijs Kooijman | b0bf82d | 2008-06-10 14:37:44 +0000 | [diff] [blame] | 3 | #include <math.h> |
4 | |||||
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 5 | void zsqrtxxx(float num) { |
6 | num = sqrt(num); | ||||
7 | } | ||||
8 |