Displaying 20 results from an estimated 31 matches for "fmodf".
Did you mean:
fmod
2015 Sep 14
2
[LLVMDev] Inconsistent result between GCC and Clang for __builtin_fmodf
Following simple program gives different answers when compiling with GCC
(4.8.4) and ToT Clang:
$ cat builtin_fmodf_bugpoint.cpp
#include <cstdio>
int main(int argc, char** argv) {
const float a = 1.0f;
const float b = 0.1f;
printf("%f mod %f = %f\n", a, b, __builtin_fmodf(a, b));
return 0;
}
$ g++ -o builtin_fmodf_bugpoint_gcc builtin_fmodf_bugpoint.cpp
$ ./builtin_fmodf_bugpoint_gcc
1....
2007 Jul 03
0
[LLVMdev] Solaris 9 compilation
...tiate by a configure test.
I can come up with a patch.
5) /home/ggreif/llvm/lib/ExecutionEngine/ExecutionEngine.cpp: In member function `llvm::GenericValue llvm::ExecutionEngine::getConstantValue(const llvm::Constant*)':
/home/ggreif/llvm/lib/ExecutionEngine/ExecutionEngine.cpp:497: error: `::fmodf' has not been declared
Should we #define fmodf as fmod?
Better possibly is to differentiate by a configure test.
I can come up with a patch.
6) /home/ggreif/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp: In member function `llvm::GenericValue llvm::Interpreter::executeGEPOperation(llvm:...
2012 Oct 12
2
[LLVMdev] cmake+ninja build error for compiler-rt sources
...for isinf - not found
-- Looking for isinf
-- Looking for isinf - found
-- Looking for finite
-- Looking for finite - not found
-- Looking for isnan
-- Looking for isnan - not found
-- Looking for ceilf
-- Looking for ceilf - found
-- Looking for floorf
-- Looking for floorf - found
-- Looking for fmodf
-- Looking for fmodf - found
-- Looking for longjmp
-- Looking for longjmp - found
-- Looking for setjmp
-- Looking for setjmp - found
-- Looking for siglongjmp
-- Looking for siglongjmp - found
-- Looking for sigsetjmp
-- Looking for sigsetjmp - found
-- Looking for writev
-- Looking for writev -...
2012 Oct 13
2
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...ing for finite
> > -- Looking for finite - not found
> > -- Looking for isnan
> > -- Looking for isnan - not found
> > -- Looking for ceilf
> > -- Looking for ceilf - found
> > -- Looking for floorf
> > -- Looking for floorf - found
> > -- Looking for fmodf
> > -- Looking for fmodf - found
> > -- Looking for longjmp
> > -- Looking for longjmp - found
> > -- Looking for setjmp
> > -- Looking for setjmp - found
> > -- Looking for siglongjmp
> > -- Looking for siglongjmp - found
> > -- Looking for sigsetjmp...
2012 Oct 12
0
[LLVMdev] cmake+ninja build error for compiler-rt sources
...- Looking for isinf - found
> -- Looking for finite
> -- Looking for finite - not found
> -- Looking for isnan
> -- Looking for isnan - not found
> -- Looking for ceilf
> -- Looking for ceilf - found
> -- Looking for floorf
> -- Looking for floorf - found
> -- Looking for fmodf
> -- Looking for fmodf - found
> -- Looking for longjmp
> -- Looking for longjmp - found
> -- Looking for setjmp
> -- Looking for setjmp - found
> -- Looking for siglongjmp
> -- Looking for siglongjmp - found
> -- Looking for sigsetjmp
> -- Looking for sigsetjmp - found
&...
2011 Oct 25
0
[LLVMdev] [LLVMDev] Clang stopped compiling?
On Oct 25, 2011, at 6:09 AM, Marcello Maggioni wrote:
> Hi, I'm trying to compile the latest clang/llvm SVN versions and I get
> this error on multiple systems :
Linking, not compiling, but still.
I am getting a similar error when building this morning.
> Undefined symbols for architecture x86_64:
> "clang::Sema::checkPseudoObjectRValue(clang::Expr*)", referenced
2012 Oct 13
0
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...Looking for finite - not found
>> > -- Looking for isnan
>> > -- Looking for isnan - not found
>> > -- Looking for ceilf
>> > -- Looking for ceilf - found
>> > -- Looking for floorf
>> > -- Looking for floorf - found
>> > -- Looking for fmodf
>> > -- Looking for fmodf - found
>> > -- Looking for longjmp
>> > -- Looking for longjmp - found
>> > -- Looking for setjmp
>> > -- Looking for setjmp - found
>> > -- Looking for siglongjmp
>> > -- Looking for siglongjmp - found
>&g...
2011 Jan 05
0
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
Eric Christopher <echristo at apple.com> writes:
>>> Or cleanup both headers from unused stuff by Eric's
>>> suggestion?
>>
>> I'm not sure this is a good idea (not that it is bad either). Murphy's
>> Law says that a function that you remove today will be used tomorrow.
>
> I meant literally functions that aren't used in the
2011 Jan 05
2
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
On Jan 5, 2011, at 6:34 AM, Óscar Fuentes wrote:
> arrowdodger <6yearold at gmail.com> writes:
>
>>> Or to say it with other words: patches welcome.
>>
>> So, how should i proceed? Make CMake-generated config to be identical to
>> autotools one?
>
> That would be a good thing.
>
> Please note that some checks are a bit tricky. A function that
2012 Oct 13
2
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...>> > -- Looking for isnan
> >> > -- Looking for isnan - not found
> >> > -- Looking for ceilf
> >> > -- Looking for ceilf - found
> >> > -- Looking for floorf
> >> > -- Looking for floorf - found
> >> > -- Looking for fmodf
> >> > -- Looking for fmodf - found
> >> > -- Looking for longjmp
> >> > -- Looking for longjmp - found
> >> > -- Looking for setjmp
> >> > -- Looking for setjmp - found
> >> > -- Looking for siglongjmp
> >> > -- Lo...
2011 Jan 05
4
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
...nction tomorrow. And adding an autoconf
> check is far from trivial, at least for those not familiarized with the
> autotools.
>
Adding a check for most standard functions is amazingly trivial:
AC_CHECK_FUNCS([backtrace ceilf floorf roundf rintf nearbyintf getcwd ])
AC_CHECK_FUNCS([powf fmodf strtof round ])
AC_CHECK_FUNCS([getpagesize getrusage getrlimit setrlimit gettimeofday ])
AC_CHECK_FUNCS([isatty mkdtemp mkstemp ])
AC_CHECK_FUNCS([mktemp posix_spawn realpath sbrk setrlimit strdup ])
AC_CHECK_FUNCS([strerror strerror_r strerror_s setenv ])
AC_CHECK_FUNCS([strtoll strtoq sysconf ma...
2011 Oct 25
2
[LLVMdev] [LLVMDev] Clang stopped compiling?
Hi, I'm trying to compile the latest clang/llvm SVN versions and I get
this error on multiple systems :
(Compiling with gcc):
llvm[4]: Compiling cc1_main.cpp for Debug+Asserts build
llvm[4]: Compiling cc1as_main.cpp for Debug+Asserts build
llvm[4]: Compiling driver.cpp for Debug+Asserts build
llvm[4]: Linking Debug+Asserts executable clang
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...-- Looking for finite - not found
> -- Looking for isnan
> -- Looking for isnan - not found
> -- Looking for isnan
> -- Looking for isnan - found
> -- Looking for ceilf
> -- Looking for ceilf - found
> -- Looking for floorf
> -- Looking for floorf - found
> -- Looking for fmodf
> -- Looking for fmodf - found
> -- Looking for log
> -- Looking for log - found
> -- Looking for log2
> -- Looking for log2 - found
> -- Looking for log10
> -- Looking for log10 - found
> -- Looking for exp
> -- Looking for exp - found
> -- Looking for exp2
> -- Lo...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...king for isinf - found
-- Looking for finite
-- Looking for finite - not found
-- Looking for isnan
-- Looking for isnan - not found
-- Looking for isnan
-- Looking for isnan - found
-- Looking for ceilf
-- Looking for ceilf - found
-- Looking for floorf
-- Looking for floorf - found
-- Looking for fmodf
-- Looking for fmodf - found
-- Looking for log
-- Looking for log - found
-- Looking for log2
-- Looking for log2 - found
-- Looking for log10
-- Looking for log10 - found
-- Looking for exp
-- Looking for exp - found
-- Looking for exp2
-- Looking for exp2 - found
-- Looking for exp10
-- Looking...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...- Looking for isnan
> > -- Looking for isnan - not found
> > -- Looking for isnan
> > -- Looking for isnan - found
> > -- Looking for ceilf
> > -- Looking for ceilf - found
> > -- Looking for floorf
> > -- Looking for floorf - found
> > -- Looking for fmodf
> > -- Looking for fmodf - found
> > -- Looking for log
> > -- Looking for log - found
> > -- Looking for log2
> > -- Looking for log2 - found
> > -- Looking for log10
> > -- Looking for log10 - found
> > -- Looking for exp
> > -- Looking for ex...
2012 Oct 16
0
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...g for isnan
>> >> > -- Looking for isnan - not found
>> >> > -- Looking for ceilf
>> >> > -- Looking for ceilf - found
>> >> > -- Looking for floorf
>> >> > -- Looking for floorf - found
>> >> > -- Looking for fmodf
>> >> > -- Looking for fmodf - found
>> >> > -- Looking for longjmp
>> >> > -- Looking for longjmp - found
>> >> > -- Looking for setjmp
>> >> > -- Looking for setjmp - found
>> >> > -- Looking for siglongjmp...
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
This file is for configure+make build, not CMake, so I'm not sure why
it's being included into your build (these failures aren't
reproducible for me).
Can you please list the exact steps you're doing to build LLVM with
CMake and make sure you don't have additional CFLAGS (LDFLAGS etc)
defined?
On Mon, Nov 11, 2013 at 6:16 PM, Jack Howarth <howarth at bromo.med.uc.edu>
2014 Sep 17
2
[LLVMdev] fail to compile latest llvm?
...checking for int64_t... yes
checking for uint64_t... yes
checking for backtrace... yes
checking for ceilf... yes
checking for floorf... yes
checking for roundf... yes
checking for rintf... yes
checking for nearbyintf... yes
checking for getcwd... yes
checking for powf... yes
checking for fmodf... yes
checking for strtof... yes
checking for round... yes
checking for log... yes
checking for log2... yes
checking for log10... yes
checking for exp... yes
checking for exp2... yes
checking for getpagesize... yes
checking for getrusage... yes
checking for getrlimit... yes
checking for...
2012 May 24
1
[LLVMdev] vmkit: Getting Started
...... time.h
checking for int64_t... yes
checking for uint64_t... yes
checking for backtrace... yes
checking for ceilf... yes
checking for floorf... yes
checking for roundf... yes
checking for rintf... yes
checking for nearbyintf... yes
checking for getcwd... yes
checking for powf... yes
checking for fmodf... yes
checking for strtof... yes
checking for round... yes
checking for getpagesize... yes
checking for getrusage... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for gettimeofday... yes
checking for isatty... yes
checking for mkdtemp... yes
checking for mkstemp... yes
c...
2010 Jul 27
2
[LLVMdev] Failed to build llvm with gcc 4.3.4 on Solaris x86
...h... time.h
checking for int64_t... yes
checking for uint64_t... yes
checking for backtrace... no
checking for ceilf... yes
checking for floorf... yes
checking for roundf... yes
checking for rintf... yes
checking for nearbyintf... yes
checking for getcwd... yes
checking for powf... yes
checking for fmodf... yes
checking for strtof... yes
checking for round... yes
checking for getpagesize... yes
checking for getrusage... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for gettimeofday... yes
checking for isatty... yes
checking for mkdtemp... no
checking for mkstemp... yes
ch...