summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2005-07-20-SqrtNoErrno.c
blob: 96761e4cfb2ecd27e9e761c72750a34c5df32a7c (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - | 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: call float @sqrtf(float %
  // Check that this is marked readonly when errno is ignored.
  return sqrtf(X);
}
OpenPOWER on IntegriCloud