Displaying 3 results from an estimated 3 matches for "c9x".
Did you mean:
c99
1999 Oct 15
2
IEEE_754 logic
...ody of the architects of R enlighten me about the reasoning behind the selection of the IEEE 754
mode for the building of R, please?
Special points of interest are:
1. The selection seems to be based on the availability of isnan() and finite(). Is this a common way
to test for IEEE 754?
2. The C9x draft introduces isfinite() instead of finite() (and as I see, some systems, e.g. the
macintosh, use this naming already). This is a deviation from the old ieee754 C mapping. I do not
know, where we are in this transformation process now (most compilers seem to use finite(), still).
3. The C9x d...
2011 Oct 27
0
[LLVMdev] llc with long-longs and hex floating point
...FE is : ~/mips/lcc-run/lcc )
($cfeflag: I~/sim/sslittle-na-sstrix-include )
execute "$CFE $cfeflag -g -Wf-target=$TARGET -S -o $base.lef $base.i"
My questions are (the second one is relevant to llvm):
Can anyone tell me what I can do to get lcc to accept long-long values, as
well as C9X hex floating point constants and such?
If necessary, I'm willing to modify llc (CBackend.cpp) to generate values
that lcc can digest. However, I'm not sure how else I can represent the
values shown above.
Can someone give me an idea of where to start?
Regards,
Lew Payne
Boise State Univ...
2004 May 14
2
request: allow inline functions in R
...#39;s Manual and C99 rationale, regarding
"inline" functions.
Thanks for considering this issue.
Li Long
-------------- next part --------------
>From C99 Rationale
==================
6.4.1 Keywords
Several keywords were added in C89: const, enum, signed, void and volatile. New in
C9X are the keywords inline, restrict, _Bool, _Complex and _Imaginary.
Where possible, however, new features have been added by overloading existing keywords, as, for
example, long double instead of extended. It is recognized that each added keyword will
require some existing code that used it as an id...