On Sun, 7 Jul 2013 09:57:32 -0400 Erik Schnetter <[email protected]> wrote:
> #include <iostream>
> #include <typeinfo>
>
> cout << typeid(isnan(1.0)).name() << "\n";
Hello Erik.
Sorry for the delay, I'm busy at the moment.
I tried your suggestion, the code on FreeBSD looks like:
//----
#include <iostream>
#include <typeinfo>
#include <cmath>
int
main(void)
{
std::cout << typeid(isnan(1.0)).name() << "\n";
}
//-----
Compiling this piece of code with
c++ -o somebin -std=c++11 -stdlib=libc++ xxxx.cc
(where c++ is on FreeBSD CURRENT (most recent sources):
FreeBSD clang version 3.3 (tags/RELEASE_33/final 183502) 20130610
Target: x86_64-unknown-freebsd10.0
Thread model: posix
Running the program emmits
i
which I suppose stands then for "INT", which is not boolvec_t.
I will contact the FBSD developers and ask.
Thank you very much.
regards,
Oliver
signature.asc
Description: PGP signature
------------------------------------------------------------------------------ See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose root cause in seconds. Start your free trial of AppDynamics Pro today! http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________ pocl-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pocl-devel
