xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2004-02-20-Builtins.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1  %s -emit-llvm -o - | not grep builtin
2 double sqrt(double x);
3 void zsqrtxxx(float num) {
4    num = sqrt(num);
5 }
6