forked from OSchip/llvm-project
Migrate CodeGen/2009-09-24-SqrtErrno.c from test/FrontendC with changes
to avoid header inclusions. llvm-svn: 136128
This commit is contained in:
parent
63683b1e64
commit
1d9aab8c9e
|
@ -0,0 +1,12 @@
|
|||
// RUN: %clang_cc1 %s -emit-llvm -o - -fmath-errno | FileCheck %s
|
||||
// llvm.sqrt has undefined behavior on negative inputs, so it is
|
||||
// inappropriate to translate C/C++ sqrt to this.
|
||||
|
||||
float sqrtf(float x);
|
||||
float foo(float X) {
|
||||
// CHECK: foo
|
||||
// CHECK-NOT: readonly
|
||||
// CHECK: call float @sqrtf
|
||||
// Check that this is not marked readonly when errno is used.
|
||||
return sqrtf(X);
|
||||
}
|
Loading…
Reference in New Issue