blob: 873236ad2ef9c15296472e26ae61cc1f60628188 [file] [log] [blame]
Eric Christopherb0257342011-07-26 21:42:32 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2// llvm.sqrt has undefined behavior on negative inputs, so it is
3// inappropriate to translate C/C++ sqrt to this.
4float sqrtf(float x);
5float foo(float X) {
6 // CHECK: foo
7 // CHECK: call float @sqrtf(float %tmp) readnone
8 // Check that this is marked readonly when errno is ignored.
9 return sqrtf(X);
10}