Migrate CodeGen/2009-09-24-SqrtErrno.c from test/FrontendC with changes

to avoid header inclusions.

llvm-svn: 136128
This commit is contained in:
Eric Christopher 2011-07-26 20:31:17 +00:00
parent 63683b1e64
commit 1d9aab8c9e
1 changed files with 12 additions and 0 deletions

View File

@ -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);
}