mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
2bbcd33feb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82731 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
356 B
C
12 lines
356 B
C
// RUN: %llvmgcc %s -S -o - -fno-math-errno | FileCheck %s
|
|
// llvm.sqrt has undefined behavior on negative inputs, so it is
|
|
// inappropriate to translate C/C++ sqrt to this.
|
|
#include <math.h>
|
|
|
|
float foo(float X) {
|
|
// CHECK: foo
|
|
// CHECK: sqrtf(float %1) nounwind readonly
|
|
// Check that this is marked readonly when errno is ignored.
|
|
return sqrtf(X);
|
|
}
|