blob: 9be0523b4afd8b438f6e18fc48d10ed9710bac99 [file] [log] [blame]
Eric Christopherb0257342011-07-26 21:42:32 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | not grep builtin
2double sqrt(double x);
3void zsqrtxxx(float num) {
4 num = sqrt(num);
5}