New testcase, do not emit a call to __builtin_sqrt, emit a call to sqrt instead!

llvm-svn: 11668
This commit is contained in:
Chris Lattner 2004-02-20 19:08:12 +00:00
parent bd086418ed
commit bc7a60ffe5
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
// RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin
void zsqrtxxx(float num) {
num = sqrt(num);
}