]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/CodeGen/2004-02-20-Builtins.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / 2004-02-20-Builtins.c
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 }