Displaying 20 results from an estimated 31 matches for "nearbyintf".
Did you mean:
nearbyint
2008 Sep 21
2
[LLVMdev] OpenBSD port in progress
...one is Feature/load_module.ll. It fails because the library
is called LLVMHello.so.0.0 rather than LLVMHello.so. I have a local
patch that renames the lib in the test that I doubt should be applied
to the tree.
The second one is Transforms/SimplifyLibCalls/floor.ll. nearbyint is
not replaced by nearbyintf since neither function is defined in the
OpenBSD libm. The other two are replaced fine though. My crude
solution was to remove checking for nearbyintf.
The third one is Assembler/2004-02-01-NegativeZero.ll. This fails
because the constants are printed as positive zeros. I know there is
a bug i...
2012 Jul 15
1
[LLVMdev] Errors reported in config.log on linux
...warning: conflicting types for built-in function 'floorf'
conftest.c:138: warning: conflicting types for built-in function 'roundf'
conftest.c:138: warning: conflicting types for built-in function 'roundf'
conftest.c:140: warning: conflicting types for built-in function
'nearbyintf'
conftest.c:142: warning: conflicting types for built-in function 'powf'
conftest.c:142: warning: conflicting types for built-in function 'powf'
conftest.c:145: warning: conflicting types for built-in function 'round'
conftest.c:165: warning: the use of `mktemp' is d...
2012 Oct 12
2
[LLVMdev] cmake+ninja build error for compiler-rt sources
...- 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 - found
-- Looking for nearbyintf
-- Looking for nearbyintf - found
-- Looking for mallinfo
-- Looking for mallinfo - found
-- Looking for malloc_zone_statistics
-- Looking for malloc_zone_statistics - not found
-- Looking for mkdtemp
-- Looking for mkdtemp - found
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking fo...
2012 Oct 13
2
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...tjmp
> > -- Looking for setjmp - found
> > -- Looking for siglongjmp
> > -- Looking for siglongjmp - found
> > -- Looking for sigsetjmp
> > -- Looking for sigsetjmp - found
> > -- Looking for writev
> > -- Looking for writev - found
> > -- Looking for nearbyintf
> > -- Looking for nearbyintf - found
> > -- Looking for mallinfo
> > -- Looking for mallinfo - found
> > -- Looking for malloc_zone_statistics
> > -- Looking for malloc_zone_statistics - not found
> > -- Looking for mkdtemp
> > -- Looking for mkdtemp - fou...
2012 Oct 12
0
[LLVMdev] cmake+ninja build error for compiler-rt sources
...r 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 - found
> -- Looking for nearbyintf
> -- Looking for nearbyintf - found
> -- Looking for mallinfo
> -- Looking for mallinfo - found
> -- Looking for malloc_zone_statistics
> -- Looking for malloc_zone_statistics - not found
> -- Looking for mkdtemp
> -- Looking for mkdtemp - found
> -- Looking for mkstemp
>...
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
...r setjmp - found
>> > -- Looking for siglongjmp
>> > -- Looking for siglongjmp - found
>> > -- Looking for sigsetjmp
>> > -- Looking for sigsetjmp - found
>> > -- Looking for writev
>> > -- Looking for writev - found
>> > -- Looking for nearbyintf
>> > -- Looking for nearbyintf - found
>> > -- Looking for mallinfo
>> > -- Looking for mallinfo - found
>> > -- Looking for malloc_zone_statistics
>> > -- Looking for malloc_zone_statistics - not found
>> > -- Looking for mkdtemp
>> >...
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 siglongjmp
> >> > -- Looking for siglongjmp - found
> >> > -- Looking for sigsetjmp
> >> > -- Looking for sigsetjmp - found
> >> > -- Looking for writev
> >> > -- Looking for writev - found
> >> > -- Looking for nearbyintf
> >> > -- Looking for nearbyintf - found
> >> > -- Looking for mallinfo
> >> > -- Looking for mallinfo - found
> >> > -- Looking for malloc_zone_statistics
> >> > -- Looking for malloc_zone_statistics - not found
> >> > -- Look...
2011 Jan 05
4
[LLVMdev] include/Config/config.h discrepancies between CMake and autofoo builds
...ybe
> some programmer will need that function 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_C...
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
...ng for exp2 - found
> -- Looking for exp10
> -- Looking for exp10 - not found
> -- Looking for futimens
> -- Looking for futimens - not found
> -- Looking for futimes
> -- Looking for futimes - found
> -- Looking for writev
> -- Looking for writev - found
> -- Looking for nearbyintf
> -- Looking for nearbyintf - found
> -- Looking for mallinfo
> -- Looking for mallinfo - not found
> -- Looking for malloc_zone_statistics
> -- Looking for malloc_zone_statistics - found
> -- Looking for mkdtemp
> -- Looking for mkdtemp - found
> -- Looking for mkstemp
>...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...for exp - found
-- Looking for exp2
-- Looking for exp2 - found
-- Looking for exp10
-- Looking for exp10 - not found
-- Looking for futimens
-- Looking for futimens - not found
-- Looking for futimes
-- Looking for futimes - found
-- Looking for writev
-- Looking for writev - found
-- Looking for nearbyintf
-- Looking for nearbyintf - found
-- Looking for mallinfo
-- Looking for mallinfo - not found
-- Looking for malloc_zone_statistics
-- Looking for malloc_zone_statistics - found
-- Looking for mkdtemp
-- Looking for mkdtemp - found
-- Looking for mkstemp
-- Looking for mkstemp - found
-- Looking fo...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...exp10
> > -- Looking for exp10 - not found
> > -- Looking for futimens
> > -- Looking for futimens - not found
> > -- Looking for futimes
> > -- Looking for futimes - found
> > -- Looking for writev
> > -- Looking for writev - found
> > -- Looking for nearbyintf
> > -- Looking for nearbyintf - found
> > -- Looking for mallinfo
> > -- Looking for mallinfo - not found
> > -- Looking for malloc_zone_statistics
> > -- Looking for malloc_zone_statistics - found
> > -- Looking for mkdtemp
> > -- Looking for mkdtemp - fou...
2012 Oct 16
0
[LLVMdev] [cfe-dev] cmake+ninja build error for compiler-rt sources
...mp
>> >> > -- Looking for siglongjmp - found
>> >> > -- Looking for sigsetjmp
>> >> > -- Looking for sigsetjmp - found
>> >> > -- Looking for writev
>> >> > -- Looking for writev - found
>> >> > -- Looking for nearbyintf
>> >> > -- Looking for nearbyintf - found
>> >> > -- Looking for mallinfo
>> >> > -- Looking for mallinfo - found
>> >> > -- Looking for malloc_zone_statistics
>> >> > -- Looking for malloc_zone_statistics - not found
>&g...
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>
2015 Jan 20
3
[LLVMdev] strlen in fast-isel
It seems that fast-isel for intel does not handle strlen. It's a general
problem in fast-isel .
~/llvmw/build/Deb~/llvmw/build/Debug+Asserts/bin/clang -O0 -mllvm
-fast-isel-verbose -mllvm -fast-isel strlen1.c
strlen1.c:12:3: warning: implicitly declaring library function 'printf' with
type 'int (const char *, ...)'
printf("%i\n", len);
^
2016 Nov 25
0
Wine release 1.9.24
...4):
ddraw: Use wined3d_device_process_vertices for execute buffers.
ddraw: Avoid redundant index buffer discards.
ddraw: Avoid redundant src vertex buffer discards.
ddraw: Implement executebuffer point and line draws.
Stefan Silviu (1):
msvcrt: Implement nearbyint and nearbyintf.
--
Alexandre Julliard
julliard at winehq.org
2014 Sep 17
2
[LLVMdev] fail to compile latest llvm?
...ng for size_t... yes
checking whether struct tm is in sys/time.h or time.h... 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 log... yes
checking for log2... yes
checking for log10... yes
checking for exp... yes
checking for exp2... yes
checking for getpagesize.....