forked from OSchip/llvm-project
New testcase, do not emit a call to __builtin_sqrt, emit a call to sqrt instead!
llvm-svn: 11668
This commit is contained in:
parent
bd086418ed
commit
bc7a60ffe5
|
@ -0,0 +1,6 @@
|
|||
// RUN: %llvmgcc -O3 -xc %s -c -o - | llvm-dis | not grep builtin
|
||||
|
||||
void zsqrtxxx(float num) {
|
||||
num = sqrt(num);
|
||||
}
|
||||
|
Loading…
Reference in New Issue