llvm-6502/test/CFrontend/2005-07-20-SqrtNoErrno.c

8 lines
207 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -o - -fno-math-errno | gccas | llvm-dis | grep llvm.sqrt
#include <math.h>
float foo(float X) {
// Check that this compiles to llvm.sqrt when errno is ignored.
return sqrtf(X);
}