1// RUN: %clang_cc1  %s -emit-llvm -o - | not grep builtin
2double sqrt(double x);
3void zsqrtxxx(float num) {
4   num = sqrt(num);
5}
6